Reconfiguration of the basic multi-agent architecture.
This commit is contained in:
@@ -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"
|
||||
]
|
||||
Reference in New Issue
Block a user