TinyLLamaTest2 / app.py
Pudding48's picture
Update app.py
5190ce9 verified
raw
history blame
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!"}