Build lightweight AI agent admin
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
"""
|
||||
AI 工作流节点系统
|
||||
|
||||
提供可扩展的节点架构,支持:
|
||||
- 内置节点(LLM、条件、代码等)
|
||||
- 自定义节点扩展
|
||||
- 知识库节点(预留)
|
||||
- 工具节点(预留)
|
||||
"""
|
||||
from .base import BaseNode, NodeContext, NodeResult
|
||||
from .registry import NodeRegistry
|
||||
|
||||
__all__ = [
|
||||
'BaseNode',
|
||||
'NodeContext',
|
||||
'NodeResult',
|
||||
'NodeRegistry',
|
||||
]
|
||||
Reference in New Issue
Block a user