Coverage for src / local_deep_research / research_library / __init__.py: 100%
8 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-14 23:55 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-14 23:55 +0000
1"""
2Research Library Module - PDF Download and Management System
4This module provides functionality for:
5- Downloading PDFs from research sources
6- Managing a local library of downloaded documents
7- Tracking download status and deduplication
8- Providing UI for library browsing and download management
9"""
11from .services.download_service import DownloadService
12from .services.library_service import LibraryService
13from .services.library_rag_service import LibraryRAGService
14from .routes.library_routes import library_bp
15from .routes.rag_routes import rag_bp
16from .deletion.routes import delete_bp
17from .search import search_bp
19__all__ = [
20 "DownloadService",
21 "LibraryService",
22 "LibraryRAGService",
23 "library_bp",
24 "rag_bp",
25 "delete_bp",
26 "search_bp",
27]