Spaces:
Running
Running
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 = "" | |