image / state.py
Muthuraja18's picture
Update state.py
8d2cd0b verified
Raw
History Blame
240 Bytes
from typing import TypedDict, List, Optional, Any
class AgentState(TypedDict):
user_input: str
task: str
steps: List[str]
uploaded_files: List[str]
current_image: Optional[str]
result: Any
history: List[dict]