File size: 321 Bytes
8a1c0d1
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""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",
]