Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kltn20133118
/
pychatbot
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6b725f7
pychatbot
/
request
/
RequestOTP.py
kltn20133118
Upload 48 files
6b725f7
verified
8 months ago
raw
Copy download link
history
blame
Safe
211 Bytes
from
pydantic
import
BaseModel
from
typing
import
Optional
class
RequestCreateOTP
(
BaseModel
):
email:
Optional
[
str
]
class
RequestVerifyOTP
(
BaseModel
):
email:
Optional
[
str
]
otp:
Optional
[
str
]