feat(*): first mvp
This commit is contained in:
10
backend/src/bot/modules/ai/models.py
Normal file
10
backend/src/bot/modules/ai/models.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from typing import TypedDict
|
||||
|
||||
|
||||
class AIResponse(TypedDict):
|
||||
answer: str
|
||||
follow_up_options: list[str]
|
||||
|
||||
|
||||
class FollowUpOptions(TypedDict):
|
||||
options: list[str]
|
||||
Reference in New Issue
Block a user