| 13 | status: Literal["pending", "completed"] |
| 14 | |
| 15 | class AgentState(BaseAgentState): |
| 16 | todos: list[Todo] |
| 17 | |
| 18 | @tool |
| 19 | def manage_todos(todos: list[Todo], runtime: ToolRuntime) -> Command: |
nothing calls this directly
no outgoing calls
no test coverage detected