Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LittleLittleCloud
/
mlnet-samples
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
02d89c6
mlnet-samples
/
model
/
user.py
XiaoYun Zhang
update
6abb254
over 1 year ago
raw
Copy download link
history
blame
Safe
209 Bytes
from
pydantic
import
BaseModel
from
.document
import
Document
class
User
(
BaseModel
):
user_name:
str
email:
str
full_name:
str
disabled:
bool
=
None
documents:
list
[Document] =
None