datum / builder /state.py
subhamb04's picture
Upload folder using huggingface_hub
9cccf74 verified
raw
history blame contribute delete
302 Bytes
from typing import TypedDict, Literal
import pandas as pd
from PIL import Image
class AgentState(TypedDict, total=False):
question: str
sql: str
df: pd.DataFrame
chart_pil: Image.Image
narrative: str
route: Literal["sql", "chat"]
history: list[tuple[str, str]]