feat(llm): 添加模型部署和删除的 API 接口

- 在 application-ymx.yaml 文件中添加了两个新的 API 接口:
  - 模型部署 (deploy_model)
  - 模型删除 (delete_model)
- 这些接口将用于管理和操作大语言模型的部署状态
This commit is contained in:
sunxiqing 2025-03-05 18:58:56 +08:00
parent 8288280a9d
commit 9a47fbef96

View File

@ -330,6 +330,10 @@ llm:
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
#################### 30000: 大模型对话相关API。 ###################
#### 大模型对话