Coverage for src / local_deep_research / advanced_search_system / candidate_exploration / __init__.py: 100%

7 statements  

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

1""" 

2Candidate exploration system for discovering and refining candidates. 

3 

4This module provides inheritance-based components for exploring and discovering 

5candidates through different search strategies and approaches. 

6""" 

7 

8from .adaptive_explorer import AdaptiveExplorer 

9from .base_explorer import BaseCandidateExplorer, ExplorationResult 

10from .constraint_guided_explorer import ConstraintGuidedExplorer 

11from .diversity_explorer import DiversityExplorer 

12from .parallel_explorer import ParallelExplorer 

13from .progressive_explorer import ProgressiveExplorer 

14 

15__all__ = [ 

16 # Base classes 

17 "BaseCandidateExplorer", 

18 "ExplorationResult", 

19 # Concrete implementations 

20 "ParallelExplorer", 

21 "AdaptiveExplorer", 

22 "ConstraintGuidedExplorer", 

23 "DiversityExplorer", 

24 "ProgressiveExplorer", 

25]