Coverage for src / local_deep_research / benchmarks / comparison / __init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.12.0, created at 2026-01-11 00:51 +0000

1""" 

2Comparison submodule for evaluating different configurations of Local Deep Research. 

3 

4This module provides tools for comparing the performance of different 

5parameters, models, and search engines. 

6""" 

7 

8from local_deep_research.benchmarks.comparison.evaluator import ( 

9 compare_configurations, 

10) 

11from local_deep_research.benchmarks.comparison.results import ( 

12 Benchmark_results, 

13) 

14 

15__all__ = [ 

16 "compare_configurations", 

17 "Benchmark_results", 

18]