Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ProzisTech
/
key-text-image-finder
like
0
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
f88e527
key-text-image-finder
/
app.py
MarioPrzBasto
Add application file
f88e527
3 months ago
raw
Copy download link
history
blame
Safe
153 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
, tags=[
"Home"
]
)
def
api_home
():
return
{
'detail'
:
'Welcome to FastAPI TextGen Tutorial!'
}