- Graph (blue): The deployed code containing your agent’s logic
- Assistants (light blue): Configuration options (model, prompts, tools)
- Threads (orange): State containers for conversation history
- Runs (green): Executions that pair an assistant + thread
- Run: A1 + T1: Assistant 1 configuration applied to User A’s conversation
- Run: A1 + T2: Same assistant serving User B (different conversation)
- Run: A2 + T1: Different assistant applied to User A’s conversation (configuration switch)
- Each run may have its own input, configuration overrides, and metadata.
- Runs can be stateless (no thread) or stateful (executed on a thread for conversation persistence).
- Multiple runs can use the same assistant configuration.
- The assistant’s configuration affects how the underlying graph executes.
In this section
Kick off background runs
Run your agent asynchronously and poll for results.
Run multiple agents on the same thread
Use multiple assistants on a shared thread to combine agent capabilities.
Stateless runs
Execute runs without persisting state when conversation history isn’t needed.
Cancel a run
Cancel a single run or multiple runs via the API.
Connect these docs to Claude, VSCode, and more via MCP for real-time answers.

