mirror of
https://github.com/langgenius/dify.git
synced 2026-03-27 09:09:54 +08:00
15 lines
286 B
Python
15 lines
286 B
Python
"""
|
|
Orchestration subsystem for graph engine.
|
|
|
|
This package coordinates the overall execution flow between
|
|
different subsystems.
|
|
"""
|
|
|
|
from .dispatcher import Dispatcher
|
|
from .execution_coordinator import ExecutionCoordinator
|
|
|
|
__all__ = [
|
|
"Dispatcher",
|
|
"ExecutionCoordinator",
|
|
]
|