Use this file to discover all available pages before exploring further.
What this builds. A main pipeline that splits a newline-delimited input into a list via SplitTextNode, then runs a sub-pipeline once per element by setting execution_mode="batch" on the PipelineNode.
You’ll end up with. A saved batched-pipeline whose output is the sub-pipeline’s output_0 produced for each split line.
execution_mode="batch" is what tells the runtime to fan the sub-pipeline out across the list — without it, the node receives the list as a single input.