FreeRag / src /rag /__init__.py
GitHub Actions
Deploy from GitHub Actions
c9622da
raw
history blame contribute delete
161 Bytes
"""RAG pipeline module for FreeRAG."""
from src.rag.retriever import Retriever
from src.rag.pipeline import RAGPipeline
__all__ = ["Retriever", "RAGPipeline"]