9 lines
195 B
Python
9 lines
195 B
Python
"""
|
|
RAG (Retrieval Augmented Generation) application package.
|
|
"""
|
|
|
|
from fastapi import FastAPI
|
|
from app.api.routes import router
|
|
|
|
app = FastAPI(title="RAG-via-FastAPI")
|
|
app.include_router(router) |