File size: 355 Bytes
cf4e043
42b1b7d
 
cf4e043
42b1b7d
 
 
 
 
cf4e043
1
2
3
4
5
6
7
8
9
10
from typing import Annotated,Literal,Optional,List
from typing_extensions import TypedDict
from langgraph.graph.message import add_messages
from langchain_core.messages import AIMessage,HumanMessage,BaseMessage

class State(TypedDict):
    """ 
    Represents the structure of the state used in the graph
    """
    messages: Annotated[list,add_messages]