coderpotter's picture
Upload folder using huggingface_hub
7b2e5db verified
raw
history blame contribute delete
247 Bytes
from typing import List
from typing_extensions import TypedDict
class ResearchSummary(TypedDict):
article_text: str
plan_string: str
dependencies: dict
tools: List[str]
arguments: List[str]
results: dict
result: str