Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Pudding48
/
TinyLLamaTesting
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a0cd9ba
TinyLLamaTesting
/
app.py
Pudding48
Update app.py
c760d45
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
122 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
health_check
():
return
{
"status"
:
"FastAPI is alive!"
}