flow
(required): The input flow that will be split into a sequence of output flows.numOutputs
configuration option. Each output represents a step in the sequence and will receive the flow from the previous step.
numOutputs
(required): An integer specifying the number of output flows to create. This determines how many steps will be in the sequence.flow
input.numOutputs
configuration option.numOutputs
set to 4. The input image flows through the Sequence node, which splits it into four sequential outputs. Each output is connected to a node that performs a specific transformation (Resize, Blur, Grayscale, Contrast). The final output of the sequence is the transformed image.
numOutputs
configuration matches the number of connected output nodes. A mismatch can lead to unexpected behavior.