Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Germin
/
Backend
like
1
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
Backend
/
app.py
sravan
rag app
8e70769
27 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
106 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}