This commit is contained in:
XIE7654
2025-07-18 10:39:05 +08:00
parent 66d5971570
commit aef25112f6
16 changed files with 83 additions and 74 deletions

10
chat/schemas/ai_chat.py Normal file
View File

@@ -0,0 +1,10 @@
from pydantic import BaseModel
class ChatCreate(BaseModel):
pass
class Chat(ChatCreate):
id: int
class Config:
orm_mode = True