Files
assafelovic--gpt-researcher/multi_agents/memory/research.py
T
2026-07-13 12:39:12 +08:00

23 lines
469 B
Python

from typing import TypedDict, List, Annotated
import operator
class ResearchState(TypedDict):
task: dict
initial_research: str
sections: List[str]
research_data: List[dict]
human_feedback: str
plan_revision_count: int
# Report layout
title: str
headers: dict
date: str
table_of_contents: str
introduction: str
conclusion: str
sources: List[str]
report: str
fact_check_notes: str
diagrams: List[str]