Shakeel401's picture
Upload 2 files
ce2f023 verified
raw
history blame contribute delete
191 Bytes
from typing import Annotated
from typing_extensions import TypedDict
from langgraph.graph.message import add_messages
class State(TypedDict):
messages: Annotated[list, add_messages]