Rohith2026's picture
Create graph/state.py
754c5de verified
Raw
History Blame Contribute Delete
249 Bytes
from typing import TypedDict, List, Optional
class ResearchState(TypedDict):
question: str
search_results: Optional[List[str]]
summary: Optional[str]
fact_check: Optional[str]
final_report: Optional[str]
error: Optional[str]