Wait for jobs
await_jobsBlock (server-side) until the scope has no pending/running jobs, or the timeout passes — use this instead of polling get_workflow_status yourself. Returns {done, jobs}. If done=false the work is still running: just call await_jobs again (a 3-5 minute storyboard takes a few consecutive calls). Keep timeout_seconds <= 50 so the client doesn't time out the tool call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| style_id | No | Style ID whose analysis/template jobs to wait for; pass exactly one of project_id or style_id | |
| project_id | No | Project ID whose jobs to wait for; pass exactly one of project_id or style_id | |
| timeout_seconds | No | Max seconds to block server-side before returning done=false; keep <= 50 so the client doesn't time out the tool call |