GitHub Actions
Sync from GitHub
1d32142
raw
history blame contribute delete
217 Bytes
from typing_extensions import TypedDict
from typing import Annotated
from langgraph.graph.message import add_messages
class State(TypedDict):
messages: Annotated[list, add_messages]
message_type: str | None