Files
povtornyy-ekzamen-issledova…/src/state.py
T

7 lines
166 B
Python

from typing import TypedDict, List, Optional
class PlanningState(TypedDict):
task: str
plan: Optional[List[str]]
current_step: int
results: List[str]