compute_status
Check the status of multiple Compute tasks by providing their task IDs, receiving pending, status, result, or exception details.
Instructions
Check the status of one or more Compute tasks (non-blocking).
Args: task_ids: List of task UUID strings returned by compute_submit() or compute_batch_submit().
Returns: Dict mapping each task_id to its status info: - 'pending': True if the task is still running - 'status': 'success', 'failed', or a waiting state - 'result': The return value (only if complete and successful) - 'exception': Error info (only if failed)
Examples: compute_status(["task-uuid-1", "task-uuid-2"])
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_ids | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||