File size: 160 Bytes
de651ab
 
 
 
 
1
2
3
4
5
from typing import TypedDict, Annotated
from langgraph.graph.message import add_messages

class AgentState(TypedDict):
  messages: Annotated[list, add_messages]