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

3 statements  

« prev     ^ index     » next       coverage.py v7.15.1, created at 2026-07-19 23:35 +0000

1""" 

2Semantic Search subpackage 

3 

4Provides semantic search over research history and library collections: 

5- Routes for indexing and searching collections 

6- ResearchHistoryIndexer for converting research into searchable documents 

7""" 

8 

9from .routes import search_bp 

10from .services.research_history_indexer import ResearchHistoryIndexer 

11 

12__all__ = ["search_bp", "ResearchHistoryIndexer"]