vraj04patel's picture
blog generator implemented
ed65c68
raw
history blame contribute delete
308 Bytes
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 = ""