This commit is contained in:
Typer_Body
2026-05-20 02:49:44 +08:00
parent 313d553271
commit 5c5614667a
9 changed files with 1016 additions and 500 deletions
+9
View File
@@ -44,6 +44,11 @@ def __getattr__(name: str) -> Any:
return WorkflowExecutor
if name in ('DebugWorkflowExecutor', 'DebugExecutionState', 'ExecutionLog'):
from . import debug
return getattr(debug, name)
if name == 'nodes':
return import_module('.nodes', __name__)
@@ -69,4 +74,8 @@ __all__ = [
'NodeTypeRegistry',
# Executor
'WorkflowExecutor',
# Debug
'DebugWorkflowExecutor',
'DebugExecutionState',
'ExecutionLog',
]