The final report agent has been largely completed.

This commit is contained in:
戒酒的李白
2025-08-26 17:34:36 +08:00
parent 197e68f7ba
commit f0788b64f3
52 changed files with 7853 additions and 825 deletions
+15
View File
@@ -0,0 +1,15 @@
"""
Report Engine节点处理模块
实现报告生成的各个处理步骤
"""
from .base_node import BaseNode, StateMutationNode
from .template_selection_node import TemplateSelectionNode
from .html_generation_node import HTMLGenerationNode
__all__ = [
"BaseNode",
"StateMutationNode",
"TemplateSelectionNode",
"HTMLGenerationNode"
]