ai-challenge / app.py
SebaK13's picture
Create app.py
aca9b7c verified
raw
history blame
226 Bytes
from fastapi import FastAPI
from routers import distilbert
# Create a new FastAPI app instance
app = FastAPI()
app.include_router(distilbert)
@app.get("/")
def greet_json():
return {"detail": "AI Challenge FastAPI"}