A single step in an execution plan.
| 8 | |
| 9 | @dataclass |
| 10 | class PlanStep: |
| 11 | """A single step in an execution plan.""" |
| 12 | |
| 13 | step_number: int |
| 14 | task: str |
| 15 | server: str |
| 16 | tool: str |
| 17 | tool_args: dict |
| 18 | dependencies: list[int] |
| 19 | expected_output: str |
| 20 | |
| 21 | |
| 22 | @dataclass |
no outgoing calls