Add src/brief_state.py

This commit is contained in:
2026-06-05 12:37:41 +00:00
parent 850f1c6c15
commit bec4a732e3
+8
View File
@@ -0,0 +1,8 @@
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