new changes

This commit is contained in:
n4ze3m
2023-04-15 18:00:11 +05:30
parent 4efc9e05e0
commit 92cb203503
9 changed files with 324 additions and 31 deletions

View File

@@ -1,2 +1,2 @@
from .chat import ChatBody
from .chat import ChatBody, ChatAppBody
from .user import UserValidation, SaveChatToApp

View File

@@ -5,3 +5,9 @@ class ChatBody(BaseModel):
html: str
history: list
# url: str
class ChatAppBody(BaseModel):
id: str
user_message: str
url: str
history: list