Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
roxky/g4f-demo2
cutycat2000x
/
g4f-demo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0e88cfa
g4f-demo
/
app.py
sbrandeis
HF staff
Create app.py
5fa5a4a
verified
9 months ago
raw
Copy download link
history
blame
Safe
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}