A module that chains multiple modules together, passing outputs from one
to inputs of the next. Provides DSPy-style piping with the %>>% operator.
Explicitly constructs a pipeline from a sequence of modules. Use this when you need fine-grained control over input/output mapping between steps.
Arguments
- ...
Modules or steps (created with
step()) to chain together