Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Pudding48
/
TinyLLamaTest2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0e64714
TinyLLamaTest2
/
app.py
Pudding48
Update app.py
0e64714
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
128 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
root
():
return
{
"message"
:
"FastAPI backend is running!"
}