Reconfiguration of the basic multi-agent architecture.

This commit is contained in:
戒酒的李白
2025-08-22 22:04:08 +08:00
parent bec01f8930
commit 7ae863a781
70 changed files with 6792 additions and 648 deletions
+34
View File
@@ -0,0 +1,34 @@
"""
Prompt模块
定义Deep Search Agent各个阶段使用的系统提示词
"""
from .prompts import (
SYSTEM_PROMPT_REPORT_STRUCTURE,
SYSTEM_PROMPT_FIRST_SEARCH,
SYSTEM_PROMPT_FIRST_SUMMARY,
SYSTEM_PROMPT_REFLECTION,
SYSTEM_PROMPT_REFLECTION_SUMMARY,
SYSTEM_PROMPT_REPORT_FORMATTING,
output_schema_report_structure,
output_schema_first_search,
output_schema_first_summary,
output_schema_reflection,
output_schema_reflection_summary,
input_schema_report_formatting
)
__all__ = [
"SYSTEM_PROMPT_REPORT_STRUCTURE",
"SYSTEM_PROMPT_FIRST_SEARCH",
"SYSTEM_PROMPT_FIRST_SUMMARY",
"SYSTEM_PROMPT_REFLECTION",
"SYSTEM_PROMPT_REFLECTION_SUMMARY",
"SYSTEM_PROMPT_REPORT_FORMATTING",
"output_schema_report_structure",
"output_schema_first_search",
"output_schema_first_summary",
"output_schema_reflection",
"output_schema_reflection_summary",
"input_schema_report_formatting"
]