Coverage for src/local_deep_research/research_library/__init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.16.0, created at 2026-09-06 15:42 +0000
« prev ^ index » next coverage.py v7.16.0, created at 2026-09-06 15:42 +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
15__all__ = [
16 "DownloadService",
17 "LibraryService",
18 "LibraryRAGService",
19]