hrbot / src /rag /__init__.py
Sonu Prasad
updated
8a1c0d1
raw
history blame contribute delete
321 Bytes
"""RAG module for HR Report Generator."""
from src.rag.synthesizer import ReportSynthesizer, ReportInput, SynthesisResult
from src.rag.retriever import DocumentRetriever, RetrievalContext
__all__ = [
"ReportSynthesizer",
"ReportInput",
"SynthesisResult",
"DocumentRetriever",
"RetrievalContext",
]