5 lines
128 B
Python
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) |