Coverage for src/local_deep_research/followup_research/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-06-03 23:15 +0000

1""" 

2Follow-up Research Package 

3 

4This package provides functionality for asking follow-up questions on existing research, 

5reusing previous findings and sources to provide contextual answers. 

6""" 

7 

8from .service import FollowUpResearchService 

9from .models import FollowUpRequest 

10 

11__all__ = [ 

12 "FollowUpResearchService", 

13 "FollowUpRequest", 

14]