Files
AiDA_Python/app/schemas/chat_robot.py
2024-05-29 11:12:59 +08:00

9 lines
136 B
Python

from pydantic import BaseModel
class ChatRobotModel(BaseModel):
gender: str
message: str
session_id: str
user_id: int