feat: solution for 'Повторный экзамен: Исследовательский бриф (план → шаги → сводка)'
This commit is contained in:
+6
-5
@@ -1,7 +1,8 @@
|
||||
from typing import TypedDict, List, Optional
|
||||
|
||||
class PlanningState(TypedDict):
|
||||
task: str
|
||||
plan: Optional[List[str]]
|
||||
current_step: int
|
||||
results: List[str]
|
||||
class BriefState(TypedDict):
|
||||
topic: str
|
||||
outline: List[str] | None
|
||||
step_index: int
|
||||
notes: List[str]
|
||||
final_brief: str | None
|
||||
Reference in New Issue
Block a user