Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
rapid12k4
/
happychat
like
0
Runtime error
App
Files
Files
Community
14d62c8
happychat
/
app.py
rapid12k4
Create app.py
6b0f734
verified
3 days ago
raw
Copy download link
history
blame
Safe
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}