Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
shrisdiablo
/
dev-yuvabe-app-api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bf6502c
dev-yuvabe-app-api
/
src
/
core
/
schemas.py
Shri
fix: async function call
7e2275e
6 months ago
raw
Copy download link
history
blame
Safe
164 Bytes
from
typing
import
Generic
, TypeVar
from
pydantic
import
BaseModel
T = TypeVar(
"T"
)
class
BaseResponse
(BaseModel,
Generic
[T]):
status_code:
int
data: T