Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wdh99
/
flan-t5
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8eb5923
flan-t5
/
main.py
wdh99
Create main.py
644fb40
about 2 years ago
raw
Copy download link
history
blame
Safe
107 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}