!771 feat: 完善AI工作流运行测试(通义千问)

Merge pull request !771 from Lesan/feature/ai-workflow
This commit is contained in:
芋道源码
2025-05-03 11:24:58 +00:00
committed by Gitee
3 changed files with 204 additions and 5 deletions

View File

@@ -20,6 +20,6 @@ export const deleteWorkflow = async (id) => {
return await request.delete({ url: '/ai/workflow/delete?id=' + id })
}
export const updateWorkflowModel = async (data) => {
return await request.put({ url: '/ai/workflow/updateWorkflowModel', data })
export const testWorkflow = async (data) => {
return await request.post({ url: '/ai/workflow/test', data })
}