8 lines
188 B
Python
8 lines
188 B
Python
from typing import TypedDict, List, Optional
|
|
|
|
class BriefState(TypedDict):
|
|
topic: str
|
|
outline: List[str] | None
|
|
step_index: int
|
|
notes: List[str]
|
|
final_brief: str | None |