For the complete documentation index, see llms.txt. This page is also available as Markdown.

run_tasks_until_done()

run_tasks_until_done()

Submit one or more tasks and wait for them to finish

Returns a list of task results, ordered to match the submitted tasks. Each result's shape depends on the job that ran and on the verbose flag.

Arguments

{
  "name": "string",
  "query": "string"
}

Returns

Ordered list of task responses, one per submitted task.

[
  {
    "status": "string",
    "query": "string",
    "user": "string",
    "created_at": "2026-06-03T08:00:00Z",
    "job_name": "string",
    "share_status": "string",
    "permitted_accessors": {},
    "build_owner": "string",
    "environment_name": "string",
    "agent_name": "string",
    "task_id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "project_id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "answer": "string",
    "formatted_answer": "string",
    "answer_reasoning": "string",
    "has_successful_answer": true,
    "total_cost": 0,
    "total_queries": 0
  }
]

Last updated