ai-challenge / app.py
Sebastian Kułaga
Fix!
dec29b0
raw
history blame
237 Bytes
from fastapi import FastAPI
from routers.distilbert import prediction
# Create a new FastAPI app instance
app = FastAPI()
app.include_router(prediction)
@app.get("/")
def greet_json():
return {"detail": "AI Challenge FastAPI"}