code-assistant / states.py
Mahinour1's picture
add basic files
a2383a1
raw
history blame contribute delete
207 Bytes
from typing_extensions import List, TypedDict
from typing import TypedDict, Annotated
from langgraph.graph.message import add_messages
class AgentState(TypedDict):
messages: Annotated[list, add_messages]