(task: Task)
| 2 | |
| 3 | |
| 4 | async def task_handler(task: Task) -> None: |
| 5 | print(f"task: {task.input}") |
| 6 | await Agent.db.create_step(task.task_id, task.input) |
| 7 | |
| 8 | |
| 9 | async def step_handler(step: Step) -> Step: |
nothing calls this directly
no test coverage detected