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"}