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

This commit is contained in:
Lesan
2025-04-29 14:15:43 +08:00
parent bc6fadca41
commit f9e9c72969
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 })
}