Files
stealth-ai-relay/backend/src/bot/modules/ai/models.py
2026-01-21 01:20:13 +01:00

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]