Spaces:
Runtime error
Runtime error
File size: 247 Bytes
7b2e5db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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
|