agenticai / src /langgraphagenticai /state /bloggenerator_state.py
sanket03's picture
added blog generator code
1c1285c
raw
history blame contribute delete
285 Bytes
from typing_extensions import TypedDict
class BlogGeneratorState(TypedDict):
"""Represents the structure of the state used in the Blog Generator Application
Args:
TypedDict (_type_): _description_
"""
topic: str
title: str
blog: str
finalblog: str