Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
husen520
/
black-forest-labs-FLUX.2-dev
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
black-forest-labs-FLUX.2-dev
/
app.py
husen520
Create app.py
0493fdb
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}