Agent Workflow Engine
The core execution infrastructure that handles workflow execution and episode rollout.
rllm.engine.agent_workflow_engine
AgentWorkflowEngine
Source code in rllm/engine/agent_workflow_engine.py
24 25 26 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 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 | |
__init__
__init__(workflow_cls: type[Workflow], workflow_args: dict, rollout_engine: RolloutEngine, config=None, n_parallel_tasks: int = 128, retry_limit: int = 3, raise_on_error: bool = True, **kwargs)
Initialize the AgentWorkflowEngine.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
workflow_cls
|
type[Workflow]
|
The workflow class to instantiate for each task. |
required |
workflow_args
|
dict
|
Arguments to pass to workflow instances. |
required |
rollout_engine
|
RolloutEngine
|
Engine for model inference and rollout. |
required |
config
|
Optional configuration object for training. |
None
|
|
n_parallel_tasks
|
int
|
Number of parallel workflow instances to maintain. |
128
|
retry_limit
|
int
|
Maximum number of retry attempts for failed tasks. |
3
|
raise_on_error
|
bool
|
Whether to raise exceptions on permanent failures. |
True
|
**kwargs
|
Additional keyword arguments. |
{}
|
Source code in rllm/engine/agent_workflow_engine.py
initialize_pool
async
Initialize the workflow pool with parallel workflow instances.
Creates and populates the workflow queue with workflow instances for parallel task processing. This method is idempotent and will not recreate the pool if it already exists.
Source code in rllm/engine/agent_workflow_engine.py
process_task_with_retry
async
process_task_with_retry(task: dict, task_id: str, rollout_idx: int, **kwargs) -> tuple[str, int, Episode]
Process a single task rollout with retry logic based on termination reasons.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task
|
dict
|
Task dictionary containing the task specification. |
required |
task_id
|
str
|
Unique identifier for the task. |
required |
rollout_idx
|
int
|
Index of this rollout attempt for the task. |
required |
**kwargs
|
Additional arguments passed to the workflow. |
{}
|
Returns:
| Type | Description |
|---|---|
tuple[str, int, Episode]
|
tuple[str, int, Episode]: Task ID, rollout index, and completed episode. |
Raises:
| Type | Description |
|---|---|
Exception
|
If task fails permanently after retry_limit attempts and raise_on_error is True. |
Source code in rllm/engine/agent_workflow_engine.py
execute_tasks
async
Run asynchronous workflow execution with retry logic for multiple tasks.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tasks
|
list[dict]
|
List of task dictionaries to process. |
required |
task_ids
|
list[str] | None
|
Optional list of task identifiers. If None, UUIDs are generated. |
None
|
**kwargs
|
Additional arguments passed to individual task processing. |
{}
|
Returns:
| Type | Description |
|---|---|
list[Episode]
|
list[Episode]: List of completed episodes from all tasks. |
Source code in rllm/engine/agent_workflow_engine.py
execute_tasks_verl
async
Execute tasks from a Verl DataProto batch and return results.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
DataProto
|
Verl DataProto containing tasks and metadata. |
required |
**kwargs
|
Additional arguments passed to execute_tasks. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
DataProto |
DataProto
|
Transformed results compatible with Verl training. |
Source code in rllm/engine/agent_workflow_engine.py
transform_results_for_verl
Transform episode results into Verl-compatible DataProto format.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
episodes
|
list[Episode]
|
List of completed episodes from workflow execution. |
required |
task_ids
|
ndarray
|
Array of task identifiers corresponding to episodes. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
DataProto |
DataProto
|
Formatted data ready for Verl training pipeline. |
Source code in rllm/engine/agent_workflow_engine.py
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 | |
shutdown
Shutdown the workflow engine and cleanup resources.