Complete response from one agent turn.
| 374 | |
| 375 | @dataclass |
| 376 | class AgentResponse: |
| 377 | """Complete response from one agent turn.""" |
| 378 | |
| 379 | content: str |
| 380 | tool_calls: list[ToolCall] = field(default_factory=list) |
| 381 | error: str = "" |
| 382 | |
| 383 | |
| 384 | @dataclass |
no outgoing calls