feat(llm): 添加模型调优停止接口

- 在 application-dev.yaml、application-local.yaml 和 application-prod.yaml 中添加了模型调优停止接口的配置
- 新增的 stop_finetuning 配置项
This commit is contained in:
Liuyang 2025-02-25 17:38:31 +08:00
parent 7e56753435
commit 1cb2ad25e7
3 changed files with 6 additions and 0 deletions

View File

@ -283,6 +283,8 @@ llm:
text_to_image: http://36.103.199.248:5123/generate-image
# 检查点文件列表
check_file_list: /llm/finetuning/checkpoints?model_name=
# 模型调优停止 POST
stop_finetuning: /llm/finetuning/stop
#################### 30000: 大模型对话相关API。 ###################
#### 大模型对话

View File

@ -326,6 +326,8 @@ llm:
text_to_image: http://36.103.199.248:5123/generate-image
# 检查点文件列表
check_file_list: /llm/finetuning/checkpoints?model_name=
# 模型调优停止 POST
stop_finetuning: /llm/finetuning/stop
#################### 30000: 大模型对话相关API。 ###################
#### 大模型对话

View File

@ -324,6 +324,8 @@ llm:
text_to_image: http://127.0.0.1:5123/generate-image
# 检查点文件列表
check_file_list: /llm/finetuning/checkpoints?model_name=
# 模型调优停止 POST
stop_finetuning: /llm/finetuning/stop
#################### 30000: 大模型对话相关API。 ###################
#### 大模型对话