from fastapi import FastAPI from app.api.routes import router app = FastAPI(title="RAG-via-FastAPI") app.include_router(router)