This commit is contained in:
yumoqing 2026-03-30 09:11:02 +08:00
parent c7023d6bbb
commit efc6004175

View File

@ -283,3 +283,39 @@ row:
}
}
## 获得当天所有任务列表
* path /llmage/get_my_asynctasks.dspy
* method 'GET'
* params 无
*
* return
{
“status": "ok",
"data": [{
"tasks": {
"taskid",
"ioinfo", # 从这里获得最后一个返回数据如果成功有video的url
# 如果失败, 有错误信息可以显示
"status": # SUCCEEDED成功FAILED失败 其他处理中
...
}
}]
}
## 获得任务状态
* path /llmage/get_asynctask_status.dspy
* method 'GET'
* params
```
{
'taskid': # 任务id
}
* return
```
{
"status": "ok",
"data": {
"response": # 后台返回信息有状态错误信息或videod url
}
}