Coverage for /home/admin/Documents/AI/applications/lexigram-dev/lexigram/experimental/ai/lexigram-ai-rag/src/lexigram/ai/rag/evaluation/harness/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.15.4, created at 2026-08-25 07:19 +0800

1"""Benchmarking harness for comparing RAG pipeline configurations.""" 

2 

3from __future__ import annotations 

4 

5from lexigram.ai.rag.evaluation.harness.benchmark import ( 

6 BenchmarkReport, 

7 EvalExample, 

8 PipelineResult, 

9 RAGBenchmark, 

10) 

11 

12__all__ = [ 

13 "BenchmarkReport", 

14 "EvalExample", 

15 "PipelineResult", 

16 "RAGBenchmark", 

17]