refactor(yudao-server): 更新配置文件中的模型部署和管理相关 API

- 在 application-dev.yaml、application-local.yaml 和 application-prod.yaml 中添加了新的 API 配置项
- 更新了现有 API 的 URL 地址
- 优化了配置项的组织结构,按功能进行了分组
This commit is contained in:
Liuyang 2025-03-15 17:02:45 +08:00
parent fc8818c00a
commit 6dbdf76f60
3 changed files with 22 additions and 4 deletions

View File

@ -291,7 +291,13 @@ llm:
deploy_model: http://36.103.199.248:5123/llm/deploy
# 模型删除
delete_model: http://36.103.199.248:5123/llm/deploy/stop
# 模型列表 get
a_list_of_available_models: http://36.103.199.248:5123/llm/list
#删除模型
delete_the_model: /delete_model
delete_the_model_full: http://36.103.199.248:5123/delete_model
# 知识库分块文件
knowledgeBaseChunkedFiles : http:/36.103.199.248:8123/documents
#################### 30000: 大模型对话相关API。 ###################
#### 大模型对话

View File

@ -338,9 +338,9 @@ llm:
a_list_of_available_models: http://36.103.199.248:5123/llm/list
#删除模型
delete_the_model: /delete_model
delete_the_model_full: http://127.0.0.1:5123/delete_model
delete_the_model_full: http://36.103.199.248:5123/delete_model
# 知识库分块文件
knowledgeBaseChunkedFiles : /documents
knowledgeBaseChunkedFiles : http:/36.103.199.248:8123/documents
#################### 30000: 大模型对话相关API。 ###################

View File

@ -328,7 +328,19 @@ llm:
check_file_list: /llm/finetuning/checkpoints?model_name=
# 模型调优停止 POST
stop_finetuning: /llm/finetuning/stop
# 基座模型状态 POST
base_model_status: http://127.0.0.1:5123/llm/deploy/list
# 模型部署 POST
deploy_model: http://127.0.0.1:5123/llm/deploy
# 模型删除
delete_model: http://127.0.0.1:5123/llm/deploy/stop
# 模型列表 get
a_list_of_available_models: http://127.0.0.1:5123/llm/list
#删除模型
delete_the_model: /delete_model
delete_the_model_full: http://127.0.0.1:5123/delete_model
# 知识库分块文件
knowledgeBaseChunkedFiles: http://127.0.0.1:/documents
#################### 30000: 大模型对话相关API。 ###################
#### 大模型对话
# 模型列表 GET