(step: Step)
| 7 | |
| 8 | |
| 9 | async def step_handler(step: Step) -> Step: |
| 10 | print(f"step: {step.input}") |
| 11 | await Agent.db.create_step(step.task_id, f"Next step from step {step.name}") |
| 12 | step.output = step.input |
| 13 | return step |
| 14 | |
| 15 | |
| 16 | Agent.setup_agent(task_handler, step_handler).start() |
nothing calls this directly
no test coverage detected