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...
5190ce9
TinyLLamaTest2
/
app.py
Pudding48
Update app.py
5190ce9
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
186 Bytes
from
fastapi
import
FastAPI
from
pydantic
import
BaseModel
from
qabot
import
llm_chain
app = FastAPI()
@app.get(
"/"
)
def
root
():
return
{
"message"
:
"FastAPI backend is running!"
}