Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
imseldrith
/
dantts
like
0
Runtime error
App
Files
Files
Community
a07ed46
dantts
/
src
/
schemas.py
imseldrith
Upload 3 files
a07ed46
verified
4 months ago
raw
Copy download link
history
blame
Safe
166 Bytes
from
pydantic
import
BaseModel
from
typing
import
Union
class
generate_web
(
BaseModel
):
text:
Union
[
str
,
None
] =
None
class
Config
:
orm_mode =
True