Coverage for src / local_deep_research / followup_research / __init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-02-25 01:07 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-02-25 01:07 +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, FollowUpResponse
11__all__ = [
12 "FollowUpResearchService",
13 "FollowUpRequest",
14 "FollowUpResponse",
15]