Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Pudding48/TinyLLamaTest2
HUSCChatBox
/
TinyLLamaTest
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0e64714
TinyLLamaTest
/
app.py
Pudding48
Update app.py
0e64714
verified
about 2 months 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!"
}