TinyLLamaTest2 / app.py
Pudding48's picture
Update app.py
0e64714 verified
raw
history blame
128 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"message": "FastAPI backend is running!"}