Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AIEnergyScore
/
launch-computation-example
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
25dfed4
launch-computation-example
/
app.py
meg-huggingface
Initial test with Dockerfile
41f48cc
over 1 year ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}