jarvis_gaia_agent / state.py
onisj's picture
Add .gitignore and clean tracked files
1bbca12
raw
history blame
349 Bytes
from typing import TypedDict, List
from langchain_core.messages import AnyMessage
class JARVISState(TypedDict):
task_id: str
question: str
tools_needed: List[str]
web_results: List[str]
file_results: str
image_results: str
calculation_results: str
document_results: str
messages: List[AnyMessage]
answer: str