R/pipeline.R
select_outputs.Rd
Filters which output fields from a module should be passed to the next step. By default, all fields are passed forward.
select_outputs(module, ...)
A Module object
Field names to select (as character strings)
A PipelineMappedModule object for use with %>>%
%>>%
if (FALSE) { # \dontrun{ # Only pass 'answer' field, drop 'reasoning' mod_cot %>>% select_outputs(mod_next, "answer") %>>% mod_format } # }