| 6 | import uuid |
| 7 | |
| 8 | class Todo(TypedDict): |
| 9 | id: str |
| 10 | title: str |
| 11 | description: str |
| 12 | emoji: str |
| 13 | status: Literal["pending", "completed"] |
| 14 | |
| 15 | class AgentState(BaseAgentState): |
| 16 | todos: list[Todo] |
nothing calls this directly
no outgoing calls
no test coverage detected