Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Yakova
/
Embedding
like
0
Running
App
Files
Files
Community
913f408
Embedding
/
App
/
Chat
/
Schemas.py
Mbonea
file_upload: Optional[List[str]] = []
d634024
9 months ago
raw
Copy download link
history
blame
Safe
167 Bytes
from
pydantic
import
BaseModel
from
typing
import
List
,
Optional
class
BotRequest
(
BaseModel
):
message:
str
bot:
str
file_upload:
Optional
[
List
[
str
]] = []