File size: 187 Bytes
372531f
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from typing import TypedDict, List, Annotated
import operator


class DraftState(TypedDict):
    task: dict
    topic: str
    draft: dict
    review: str
    revision_notes: str