Spaces:
Runtime error
Runtime error
| from typing import TypedDict, Dict | |
| class State(TypedDict): | |
| """State for the customer support workflow.""" | |
| query: str | |
| category: str | |
| sentiment: str | |
| response: str |
| from typing import TypedDict, Dict | |
| class State(TypedDict): | |
| """State for the customer support workflow.""" | |
| query: str | |
| category: str | |
| sentiment: str | |
| response: str |