File size: 546 Bytes
4ef118d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""
Prompt templates for research and deep research services.
"""

from .deep_research_prompts import (
    ACADEMIC_FINAL_REPORT_PROMPT,
    ACADEMIC_STEP_AGENT_PROMPT,
    GENERAL_FINAL_REPORT_PROMPT,
    GENERAL_STEP_AGENT_PROMPT,
)
from .research_plan_prompts import (
    ACADEMIC_PLANNER_PROMPT,
    GENERAL_PLANNER_PROMPT,
)

__all__ = [
    "GENERAL_PLANNER_PROMPT",
    "ACADEMIC_PLANNER_PROMPT",
    "GENERAL_FINAL_REPORT_PROMPT",
    "ACADEMIC_FINAL_REPORT_PROMPT",
    "GENERAL_STEP_AGENT_PROMPT",
    "ACADEMIC_STEP_AGENT_PROMPT",
]