Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ygauravyy
/
nanee-convo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
27386e5
nanee-convo
/
app.py
ygauravyy
Update app.py
0f80afc
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
109 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}