9 lines
136 B
Python
9 lines
136 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class ChatRobotModel(BaseModel):
|
|
gender: str
|
|
message: str
|
|
session_id: str
|
|
user_id: int
|