Amna2024's picture
Create models.py
e54a0b0 verified
raw
history blame contribute delete
180 Bytes
from typing import TypedDict, Dict
class State(TypedDict):
"""State for the customer support workflow."""
query: str
category: str
sentiment: str
response: str