Coverage for src/local_deep_research/research_library/search/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.16.0, created at 2026-09-06 15:42 +0000

1""" 

2Semantic Search subpackage 

3 

4Provides semantic search over research history and library collections: 

5- ResearchHistoryIndexer for converting research into searchable documents 

6""" 

7 

8from .services.research_history_indexer import ResearchHistoryIndexer 

9 

10__all__ = ["ResearchHistoryIndexer"]