Coverage for src/local_deep_research/benchmarks/comparison/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.15.1, created at 2026-07-19 23:35 +0000
« prev ^ index » next coverage.py v7.15.1, created at 2026-07-19 23:35 +0000
1"""
2Comparison submodule for evaluating different configurations of Local Deep Research.
4This module provides tools for comparing the performance of different
5parameters, models, and search engines.
6"""
8from local_deep_research.benchmarks.comparison.evaluator import (
9 compare_configurations,
10)
11from local_deep_research.benchmarks.comparison.results import (
12 Benchmark_results,
13)
15__all__ = [
16 "compare_configurations",
17 "Benchmark_results",
18]