AiNewsV2 / state /blog_state.py
Phoenix21's picture
Modular code
7516245
raw
history blame contribute delete
378 Bytes
from typing_extensions import TypedDict
from typing import List, Annotated
import operator
from LLMS.models import Section
class BlogState(TypedDict):
content: str
sections: List[Section]
completed_sections: Annotated[List, operator.add]
final_report: str
class WorkerState(TypedDict):
section: Section
completed_sections: Annotated[List, operator.add]