check_task
Check background task status and results. Use after launching a task in the background to see if it's running, needs input, or finished, and retrieve full output.
Instructions
Check the current status of a background task (use after run_task with background=true). Return values: {status:"running"} — still running. {status:"waiting", question, options} — user input required. {status:"done", result} — completed. {status:"not_found"} — task_id not found (already completed and removed). Use full=true to retrieve the complete result without truncation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| full | No | ||
| task_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |