Represents a single tool invocation during the agent loop.
| 365 | |
| 366 | @dataclass |
| 367 | class ToolCall: |
| 368 | """Represents a single tool invocation during the agent loop.""" |
| 369 | |
| 370 | name: str |
| 371 | input: dict[str, Any] |
| 372 | result: str = "" |
| 373 | |
| 374 | |
| 375 | @dataclass |
no outgoing calls
no test coverage detected