check_task_status
Monitor the progress and retrieve the status of a long-running AI task. Obtain current status, updates, and partial results for efficient workflow management.
Instructions
Check the status of a running task. Returns current status, progress, and partial results if available.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes | The task ID returned from run_task |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"description": "The task ID returned from run_task",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}