File size: 537 Bytes
40f6dcf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
Evaluation Framework - RAG-The-Game-Changer

Comprehensive evaluation system for RAG pipelines.
"""

from .metrics import MetricsCalculator
from .hallucination_detection import HallucinationDetector
from .benchmarks import BenchmarkRunner, Benchmark, BenchmarkResult
from .evaluator import Evaluator, EvaluationConfig, EvaluationResult

__all__ = [
    "MetricsCalculator",
    "HallucinationDetector",
    "BenchmarkRunner",
    "Benchmark",
    "BenchmarkResult",
    "Evaluator",
    "EvaluationConfig",
    "EvaluationResult",
]