Spaces:
Runtime error
Runtime error
File size: 180 Bytes
e54a0b0 | 1 2 3 4 5 6 7 8 | from typing import TypedDict, Dict
class State(TypedDict):
"""State for the customer support workflow."""
query: str
category: str
sentiment: str
response: str |