mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-19 03:56:42 +08:00
### What problem does this PR solve? feat: Delete Model Provider #2376 ### Type of change - [ ] Bug Fix (non-breaking change which fixes an issue) - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -16,6 +16,7 @@ const {
|
||||
set_tenant_info,
|
||||
add_llm,
|
||||
delete_llm,
|
||||
deleteFactory,
|
||||
getSystemStatus,
|
||||
getSystemVersion,
|
||||
} = api;
|
||||
@ -81,6 +82,10 @@ const methods = {
|
||||
url: getSystemVersion,
|
||||
method: 'get',
|
||||
},
|
||||
deleteFactory: {
|
||||
url: deleteFactory,
|
||||
method: 'post',
|
||||
},
|
||||
} as const;
|
||||
|
||||
const userService = registerServer<keyof typeof methods>(methods, request);
|
||||
|
||||
Reference in New Issue
Block a user