File size: 207 Bytes
a2383a1
 
 
 
 
 
 
1
2
3
4
5
6
7
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]