Orchestrator
ActionCommand
Bases: str, Enum
Enumeration for orchestrator action commands.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
54 55 56 57 58 59 60 61 | |
ActionParseError
Bases: OrchestratorError
Exception raised when an error occurs during action parsing.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
37 38 | |
Decision
Bases: str, Enum
Enumeration for possible decisions after analyzing the user input.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
45 46 47 48 49 50 51 | |
DecisionResult
Bases: BaseModel
Holds the result of analyzing the user input.
Attributes:
| Name | Type | Description |
|---|---|---|
decision |
Decision
|
The decision on how to handle the input. |
message |
str
|
The message or response associated with the decision. |
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
64 65 66 67 68 69 70 71 72 73 74 | |
Orchestrator
Bases: IterativeCheckpointMixin, 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
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | |
__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
101 102 103 104 105 106 107 108 109 110 111 112 | |
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
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | |
extract_json_from_output(result_text)
Extracts JSON data from the given text by looking for content within
and
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
result_text |
str
|
The text from which to extract JSON data. |
required |
Returns:
| Type | Description |
|---|---|
tuple[str, dict] | None
|
dict | None: The extracted JSON dictionary if successful, otherwise None. |
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | |
from_checkpoint_state(state)
Restore orchestrator state from checkpoint.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
283 284 285 286 287 288 289 290 291 292 293 | |
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
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | |
get_iteration_state()
Serialize orchestrator loop progress for checkpoint persistence.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
295 296 297 298 | |
parse_xml_content(text, tag)
Extract content from XML-like tags.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
365 366 367 368 | |
restore_iteration_state(state)
Restore orchestrator state from a checkpoint IterationState.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
300 301 302 303 | |
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
305 306 307 308 309 310 311 312 313 314 315 316 317 | |
setup_streaming()
abstractmethod
Setups streaming for orchestrator.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
319 320 321 322 | |
to_checkpoint_state()
Extract orchestrator state for checkpointing.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | |
OrchestratorCheckpointState
Bases: BaseCheckpointState
Checkpoint state for Orchestrator nodes.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
26 27 28 29 30 | |
OrchestratorError
Bases: Exception
Base exception for Orchestrator errors.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
33 34 | |
OrchestratorIterationData
Bases: BaseModel
Typed iteration data for orchestrator loop-level checkpoints.
Source code in dynamiq/nodes/agents/orchestrators/orchestrator.py
20 21 22 23 | |