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...
156ac82
DirectEd-AI-LoRA-API
/
app..py
rayymaxx
MOdifying with minimal app
156ac82
4 months ago
raw
Copy download link
history
blame
157 Bytes
# app.py (temporary test)
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
root
():
return
{
"status"
:
"ok"
,
"message"
:
"minimal app works"
}