Result of a single agent step.
| 30 | |
| 31 | @dataclass |
| 32 | class StepResult: |
| 33 | """Result of a single agent step.""" |
| 34 | |
| 35 | success: bool |
| 36 | finished: bool |
| 37 | action: dict[str, Any] | None |
| 38 | thinking: str |
| 39 | message: str | None = None |
| 40 | |
| 41 | |
| 42 | class PhoneAgent: |