Spaces:
Build error
Build error
| """Evaluation modules for RAG assessment.""" | |
| from .metrics import RetrievalMetrics, GenerationMetrics, MetricResult | |
| from .hallucination_detector import HallucinationDetector, HallucinationResult | |
| from .benchmarking import RAGBenchmark, BenchmarkResult | |
| __all__ = [ | |
| "RetrievalMetrics", | |
| "GenerationMetrics", | |
| "MetricResult", | |
| "HallucinationDetector", | |
| "HallucinationResult", | |
| "RAGBenchmark", | |
| "BenchmarkResult" | |
| ] | |