get_task_status
Check the status of a 3D model generation task using the task ID from create_3d_model_from_text. Monitor progress, confirm completion, or identify failures with repeated queries.
Instructions
Get the status of a 3D model generation task.
IMPORTANT: This tool checks the status of a task started by create_3d_model_from_text.
You may need to call this tool MULTIPLE TIMES until the task completes.
Typical workflow:
1. Call this tool with the task_id from create_3d_model_from_text
2. Check the status in the response:
   - If status is SUCCESS, the task is complete and you can use the pbr_model_url
   - If status is FAILED, CANCELLED, BANNED, or EXPIRED, the task failed
   - If status is anything else, the task is still in progress
3. If the task is still in progress, wait a moment and call this tool again
Args:
    task_id: The ID of the task to check (obtained from create_3d_model_from_text).
Returns:
    A dictionary containing the task status and other information.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| task_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "task_id": {
      "title": "Task Id",
      "type": "string"
    }
  },
  "required": [
    "task_id"
  ],
  "title": "get_task_statusArguments",
  "type": "object"
}