mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
17 lines
335 B
Python
17 lines
335 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class StartActivityAIChatSession(BaseModel):
|
|
activity_uuid: str
|
|
message: str
|
|
|
|
class ActivityAIChatSessionResponse(BaseModel):
|
|
aichat_uuid: str
|
|
activity_uuid: str
|
|
message: str
|
|
|
|
|
|
class SendActivityAIChatMessage(BaseModel):
|
|
aichat_uuid: str
|
|
activity_uuid: str
|
|
message: str
|