Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
deepak191z/fastapi-chat3
deepak191z
/
fastapi-chat4
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
08606b0
fastapi-chat4
/
main.py
HycJack
add file
08606b0
about 1 year ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}