Mutable state threaded through one agent turn.
| 383 | |
| 384 | @dataclass |
| 385 | class _AgentRunContext: |
| 386 | """Mutable state threaded through one agent turn.""" |
| 387 | |
| 388 | messages: list[dict[str, Any]] |
| 389 | tool_calls: list[ToolCall] |
| 390 | on_tool_call: Any |
| 391 | |
| 392 | |
| 393 | # --------------------------------------------------------------------------- |