MCPcopy Create free account
hub / github.com/CopilotKit/OpenGenerativeUI / Todo

Class Todo

apps/agent/src/todos.py:8–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import uuid
7
8class Todo(TypedDict):
9 id: str
10 title: str
11 description: str
12 emoji: str
13 status: Literal["pending", "completed"]
14
15class AgentState(BaseAgentState):
16 todos: list[Todo]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected