Files
AiDA_Python/app/schemas/chat_robot.py

9 lines
136 B
Python
Raw Normal View History

2024-05-29 11:12:59 +08:00
from pydantic import BaseModel
class ChatRobotModel(BaseModel):
gender: str
message: str
session_id: str
user_id: int