Step¶
This section contains the API reference for the distilabel
step, both for the _Step
base class and the Step
class.
For more information and examples on how to use existing steps or create custom ones, please refer to Tutorial - Step.
base
¶
StepInput = Annotated[List[Dict[str, Any]], _STEP_INPUT_ANNOTATION]
module-attribute
¶
StepInput is just an Annotated
alias of the typing List[Dict[str, Any]]
with
extra metadata that allows distilabel
to perform validations over the process
step
method defined in each Step
_Step
¶
Bases: RuntimeParametersMixin
, RequirementsMixin
, SignatureMixin
, BaseModel
, _Serializable
, ABC
Base class for the steps that can be included in a Pipeline
.
A Step
is a class defining some processing logic. The input and outputs for this
processing logic are lists of dictionaries with the same keys:
```python
[
{"column1": "value1", "column2": "value2", ...},
{"column1": "value1", "column2": "value2", ...},
{"column1": "value1", "column2": "value2", ...},
]
```
The processing logic is defined in the process
method, which depending on the
number of previous steps, can receive more than one list of dictionaries, each with
the output of the previous steps. In order to make distilabel
know where the outputs
from the previous steps are, the process
function from each Step
must have an argument
or positional argument annotated with StepInput
.
```python
class StepWithOnePreviousStep(Step):
def process(self, inputs: StepInput) -> StepOutput:
yield [...]
class StepWithSeveralPreviousStep(Step):
# mind the * to indicate that the argument is a list of StepInput
def process(self, inputs: *StepInput) -> StepOutput:
yield [...]
```
In order to perform static validations and to check that the chaining of the steps
in the pipeline is valid, a Step
must also define the inputs
and outputs
properties:
inputs
: a list of strings with the names of the columns that the step needs as input. It can be an empty list if the step is a generator step.outputs
: a list of strings with the names of the columns that the step will produce as output.
Optionally, a Step
can override the load
method to perform any initialization
logic before the process
method is called. For example, to load an LLM, stablish a
connection to a database, etc.
Finally, the Step
class inherits from pydantic.BaseModel
, so attributes can be easily
defined, validated, serialized and included in the __init__
method of the step.
Source code in src/distilabel/steps/base.py
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 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 |
|
is_generator: bool
property
¶
Whether the step is a generator step or not.
Returns:
Type | Description |
---|---|
bool
|
|
is_global: bool
property
¶
Whether the step is a global step or not.
Returns:
Type | Description |
---|---|
bool
|
|
is_normal: bool
property
¶
Whether the step is a normal step or not.
Returns:
Type | Description |
---|---|
bool
|
|
inputs: StepColumns
property
¶
List of strings with the names of the mandatory columns that the step needs as input or dictionary in which the keys are the input columns of the step and the values are booleans indicating whether the column is optional or not.
Returns:
Type | Description |
---|---|
StepColumns
|
List of strings with the names of the columns that the step needs as input. |
outputs: StepColumns
property
¶
List of strings with the names of the columns that the step will produce as output or dictionary in which the keys are the output columns of the step and the values are booleans indicating whether the column is optional or not.
Returns:
Type | Description |
---|---|
StepColumns
|
List of strings with the names of the columns that the step will produce as |
StepColumns
|
output. |
process_parameters: List[inspect.Parameter]
cached
property
¶
Returns the parameters of the process
method of the step.
Returns:
Type | Description |
---|---|
List[Parameter]
|
The parameters of the |
artifacts_directory: Union[Path, None]
property
¶
Gets the path of the directory where the step should save its generated artifacts.
Returns:
Type | Description |
---|---|
Union[Path, None]
|
The path of the directory where the step should save the generated artifacts,
or |
connect(*steps, routing_batch_function=None)
¶
Connects the current step to another step in the pipeline, which means that the output of this step will be the input of the other step.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
steps
|
_Step
|
The steps to connect to the current step. |
()
|
routing_batch_function
|
Optional[RoutingBatchFunction]
|
A function that receives a list of steps and returns
a list of steps to which the output batch generated by this step should be
routed. It should be used to define the routing logic of the pipeline. If
not provided, the output batch will be routed to all the connected steps.
Defaults to |
None
|
Source code in src/distilabel/steps/base.py
__rshift__(other)
¶
Allows using the >>
operator to connect steps in the pipeline.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other
|
Union[DownstreamConnectable, RoutingBatchFunction, List[DownstreamConnectableSteps]]
|
The step to connect, a list of steps to connect to or a routing batch function to be set for the step. |
required |
Returns:
Type | Description |
---|---|
Union[DownstreamConnectable, RoutingBatchFunction, List[DownstreamConnectableSteps]]
|
The connected step, the list of connected steps or the routing batch function. |
Example
Source code in src/distilabel/steps/base.py
__rrshift__(other)
¶
Allows using the [step1, step2] >> step3 operator to connect a list of steps in the pipeline to a single step, as the list doesn't have the rshift operator.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other
|
List[UpstreamConnectableSteps]
|
The step to connect to. |
required |
Returns:
Type | Description |
---|---|
Self
|
The connected step |
Source code in src/distilabel/steps/base.py
load()
¶
Method to perform any initialization logic before the process
method is
called. For example, to load an LLM, stablish a connection to a database, etc.
Source code in src/distilabel/steps/base.py
unload()
¶
Method to perform any cleanup logic after the process
method is called. For
example, to close a connection to a database, etc.
has_multiple_inputs()
¶
Whether the process
method of the step receives more than one input or not
i.e. has a *
argument annotated with StepInput
.
Returns:
Type | Description |
---|---|
bool
|
|
bool
|
|
Source code in src/distilabel/steps/base.py
get_process_step_input()
¶
Returns the parameter of the process
method of the step annotated with
StepInput
.
Returns:
Type | Description |
---|---|
Union[Parameter, None]
|
The parameter of the |
Union[Parameter, None]
|
or |
Raises:
Type | Description |
---|---|
TypeError
|
If the step has more than one parameter annotated with |
Source code in src/distilabel/steps/base.py
verify_inputs_mappings()
¶
Verifies that the inputs_mappings
of the step are valid i.e. the input
columns exist in the inputs of the step.
Raises:
Type | Description |
---|---|
ValueError
|
If the |
Source code in src/distilabel/steps/base.py
verify_outputs_mappings()
¶
Verifies that the outputs_mappings
of the step are valid i.e. the output
columns exist in the outputs of the step.
Raises:
Type | Description |
---|---|
ValueError
|
If the |
Source code in src/distilabel/steps/base.py
get_inputs()
¶
Gets the inputs of the step after the input_mappings
. This method is meant
to be used to run validations on the inputs of the step.
Returns:
Type | Description |
---|---|
Dict[str, bool]
|
The inputs of the step after the |
Dict[str, bool]
|
not. |
Source code in src/distilabel/steps/base.py
get_outputs()
¶
Gets the outputs of the step after the outputs_mappings
. This method is
meant to be used to run validations on the outputs of the step.
Returns:
Type | Description |
---|---|
Dict[str, bool]
|
The outputs of the step after the |
Dict[str, bool]
|
or not. |
Source code in src/distilabel/steps/base.py
set_pipeline_artifacts_path(path)
¶
Sets the _pipeline_artifacts_path
attribute. This method is meant to be used
by the Pipeline
once the cache location is known.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
Path
|
the path where the artifacts generated by the pipeline steps should be saved. |
required |
Source code in src/distilabel/steps/base.py
save_artifact(name, write_function, metadata=None)
¶
Saves an artifact generated by the Step
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
the name of the artifact. |
required |
write_function
|
Callable[[Path], None]
|
a function that will receive the path where the artifact should be saved. |
required |
metadata
|
Optional[Dict[str, Any]]
|
the artifact metadata. Defaults to |
None
|
Source code in src/distilabel/steps/base.py
impute_step_outputs(step_output)
¶
Imputes the output columns of the step that are not present in the step output.
Source code in src/distilabel/steps/base.py
Step
¶
Bases: _Step
, ABC
Base class for the steps that can be included in a Pipeline
.
Attributes:
Name | Type | Description |
---|---|---|
input_batch_size |
RuntimeParameter[PositiveInt]
|
The number of rows that will contain the batches processed by
the step. Defaults to |
Runtime parameters
input_batch_size
: The number of rows that will contain the batches processed by the step. Defaults to50
.
Source code in src/distilabel/steps/base.py
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 |
|
process(*inputs)
abstractmethod
¶
Method that defines the processing logic of the step. It should yield the output rows.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*inputs
|
StepInput
|
An argument used to receive the outputs of the previous steps. The
number of arguments depends on the number of previous steps. It doesn't
need to be an |
()
|
Source code in src/distilabel/steps/base.py
process_applying_mappings(*args)
¶
Runs the process
method of the step applying the input_mappings
to the input
rows and the outputs_mappings
to the output rows. This is the function that
should be used to run the processing logic of the step.
Yields:
Type | Description |
---|---|
StepOutput
|
The output rows. |