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

3 statements  

« prev     ^ index     » next       coverage.py v7.12.0, created at 2026-01-11 00:51 +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, FollowUpResponse 

10 

11__all__ = [ 

12 "FollowUpResearchService", 

13 "FollowUpRequest", 

14 "FollowUpResponse", 

15]