sahandkh1419's picture
Upload 21 files
d108f4c verified
raw
history blame contribute delete
271 Bytes
from typing_extensions import TypedDict,List
from langgraph.graph.message import add_messages
from typing import Annotated
class State(TypedDict):
"""
Represent the structure of the state used in graph
"""
messages: Annotated[List,add_messages]