Joydeep Pandey 6e16fc99c9 Feature done
Average latency 25ms
2025-05-19 17:20:17 +05:30

5 lines
128 B
Python

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