Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rayymaxx
/
DirectEd-AI-LoRA-API
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b66d06d
DirectEd-AI-LoRA-API
/
app.py
rayymaxx
Update app
b66d06d
verified
4 months ago
raw
Copy download link
history
blame
165 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/health"
)
def
health
():
return
{
"ok"
:
True
}
@app.get(
"/"
)
def
root
():
return
{
"Minimal code running"
}