Brique RAG rΓ©utilisable pour FastAPI (ou autre backend Python).
Ce module expose un router FastAPI create_rag_router que tu peux brancher
sur n'importe quel backend existant.
from fastapi import FastAPI from rag_module.router import create_rag_router app = FastAPI() app.include_router(create_rag_router(), prefix="/api")