Coverage for src/local_deep_research/research_library/notes/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.15.1, created at 2026-07-19 23:35 +0000
« prev ^ index » next coverage.py v7.15.1, created at 2026-07-19 23:35 +0000
1"""
2Notes module - AI-enhanced note-taking within the research library.
4Notes are stored as Documents with source_type='note', sharing the same
5infrastructure as research documents while providing note-specific features:
6- Wiki-style [[linking]] between notes
7- Version history
8- AI-powered summarization, tagging, and concept extraction
9- Research integration
11Note: Routes remain in web/routes/notes_routes.py since they need Flask templates.
12This module provides the services layer.
13"""
15from .services.note_service import NoteService
16from .services.note_ai_service import NoteAIService
18__all__ = ["NoteService", "NoteAIService"]