Coverage for src/local_deep_research/followup_research/__init__.py: 100%
3 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"""
2Follow-up Research Package
4This package provides functionality for asking follow-up questions on existing research,
5reusing previous findings and sources to provide contextual answers.
6"""
8from .service import FollowUpResearchService
9from .models import FollowUpRequest
11__all__ = [
12 "FollowUpResearchService",
13 "FollowUpRequest",
14]