Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jonathanjordan21
/
helpfulness-ranker
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fcce6a8
helpfulness-ranker
/
app.py
jonathanjordan21
Create app.py
fcce6a8
verified
5 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!"
}