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] |