Spaces:
Sleeping
Sleeping
File size: 308 Bytes
ed65c68 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from typing_extensions import TypedDict
class State(TypedDict):
"""
Represents the structure of the state used in the graph.
"""
user_message: str
decision: str
yt_url: str
yt_transcript: str = ""
blog_title: str = ""
blog_content: str = ""
final_content: str = ""
|