Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yonkasoft
/
chat
like
0
Configuration error
App
Files
Files
Fetching metadata from the HF Docker repository...
456a830
chat
/
main.py
yonkasoft
Create main.py
100bced
verified
6 months ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World"
}