(task: Task)
| 76 | |
| 77 | |
| 78 | async def task_handler(task: Task) -> None: |
| 79 | if not task.input: |
| 80 | raise Exception("No task prompt") |
| 81 | await Agent.db.create_step(task.task_id, StepTypes.PLAN) |
| 82 | |
| 83 | |
| 84 | async def step_handler(step: Step) -> Step: |
nothing calls this directly
no test coverage detected