Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SAadmin
/
pdf-trainer-api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e44faac
pdf-trainer-api
/
api.py
Avinash
add minimal api entrypoint
e44faac
3 months ago
raw
Copy download link
history
blame
Safe
104 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/health"
)
def
health
():
return
{
"ok"
:
True
}