8 lines
128 B
Python
8 lines
128 B
Python
|
|
from pydantic import BaseModel
|
||
|
|
|
||
|
|
class ChatBody(BaseModel):
|
||
|
|
user_message: str
|
||
|
|
html: str
|
||
|
|
history: list
|
||
|
|
# url: str
|