gaia-agent / agent /custom_state.py
hetline's picture
feat: add agent body
9a96a6f
raw
history blame
296 Bytes
from typing import TypedDict, List, Dict, Optional, Any, Annotated
from langgraph.graph.message import add_messages
from langchain_core.messages import AnyMessage
class AssistantState(TypedDict):
messages: Annotated[list[AnyMessage], add_messages]
filename : str
file_extension : str