Orchestrator
ActionParseError
Bases: OrchestratorError
Exception raised when an error occurs during action parsing.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
19 20 |
|
Orchestrator
Bases: Node
, ABC
Orchestrates the execution of complex tasks using multiple specialized agents.
This abstract base class provides the framework for orchestrating complex tasks through multiple agents. It manages the execution flow and communication between different specialized agents.
Attributes:
Name | Type | Description |
---|---|---|
manager |
ManagerAgent
|
The managing agent responsible for overseeing the orchestration process. |
objective |
Optional[str]
|
The main objective of the orchestration. |
Abstract Methods
run_flow: Processes the given task and returns the result. setup_streaming: Configures streaming functionality for the orchestrator.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
|
__init__(**kwargs)
Initialize the orchestrator with given parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**kwargs |
Arbitrary keyword arguments. |
{}
|
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
50 51 52 53 54 55 56 57 58 59 |
|
execute(input_data, config=None, **kwargs)
Execute orchestrator flow.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_data |
OrchestratorInputSchema
|
The input data containing the objective. |
required |
config |
Optional[RunnableConfig]
|
Configuration for the runnable. |
None
|
**kwargs |
Additional keyword arguments. |
{}
|
Returns:
Type | Description |
---|---|
dict
|
dict[str, Any]: The result of the orchestration process. |
Raises:
Type | Description |
---|---|
OrchestratorError
|
If the orchestration process fails. |
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
|
get_final_result(input_data, config=None, **kwargs)
Generate a comprehensive final result based on the provided data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_data |
dict[str, str]
|
Input data for the manager. |
required |
config |
RunnableConfig
|
Configuration for the runnable. |
None
|
**kwargs |
Additional keyword arguments. |
{}
|
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The final comprehensive result. |
Raises:
Type | Description |
---|---|
OrchestratorError
|
If an error occurs while generating the final answer. |
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
|
run_flow(input_task, config=None, **kwargs)
abstractmethod
Process the given task.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_task |
str
|
The task to be processed. |
required |
config |
RunnableConfig
|
Configuration for the runnable. |
None
|
Returns:
Type | Description |
---|---|
dict[str, Any]
|
dict[str, Any]: The final output generated after processing the task. |
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
103 104 105 106 107 108 109 110 111 112 113 114 115 |
|
setup_streaming()
abstractmethod
Setups streaming for orchestrator.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
117 118 119 120 |
|
OrchestratorError
Bases: Exception
Base exception for Orchestrator errors.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
15 16 |
|