11 lines
168 B
Python
11 lines
168 B
Python
from typing import TypedDict
|
|
|
|
|
|
class AIResponse(TypedDict):
|
|
answer: str
|
|
follow_up_options: list[str]
|
|
|
|
|
|
class FollowUpOptions(TypedDict):
|
|
options: list[str]
|