veeiiinnnnn's picture
Add backend-python and Dockerfile
4ef118d
"""
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",
]