rag-sql-agent / state.py
fahmiaziz's picture
Upload 10 files
75d38ea verified
raw
history blame
282 Bytes
from typing_extensions import TypedDict
from langgraph.graph.message import AnyMessage, add_messages
from typing import Annotated, List
class AgentState(TypedDict):
messages: Annotated[List[AnyMessage], add_messages]
sql_query: str
error_str: str
question_type: str