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
+20
View File
@@ -0,0 +1,20 @@
"""
节点处理模块
实现Deep Search Agent的各个处理步骤
"""
from .base_node import BaseNode
from .report_structure_node import ReportStructureNode
from .search_node import FirstSearchNode, ReflectionNode
from .summary_node import FirstSummaryNode, ReflectionSummaryNode
from .formatting_node import ReportFormattingNode
__all__ = [
"BaseNode",
"ReportStructureNode",
"FirstSearchNode",
"ReflectionNode",
"FirstSummaryNode",
"ReflectionSummaryNode",
"ReportFormattingNode"
]