13 lines
223 B
Python
13 lines
223 B
Python
from pydantic import BaseModel
|
|
|
|
class ChatBody(BaseModel):
|
|
user_message: str
|
|
html: str
|
|
history: list
|
|
# url: str
|
|
|
|
class ChatAppBody(BaseModel):
|
|
id: str
|
|
user_message: str
|
|
url: str
|
|
history: list |