AI配置增加字段适配处理

This commit is contained in:
2025-12-23 16:51:53 +08:00
parent 2d033e6a3e
commit 7f89fd17d3
22 changed files with 2951 additions and 4 deletions
+11 -1
View File
@@ -204,4 +204,14 @@ export function countByProvider(provider: string) {
method: 'get',
params: { provider }
})
}
}
// 测试后更新AI配置
export function updateAiConfigFromTest(data: any) {
return request({
url: '/aiConfig/updateFromTest',
method: 'put',
data
})
}