Skip to main content
For the complete documentation index for agents and LLMs, see llms.txt.

StringListJoiner

Join multiple string list inputs into a single string output.

Key Features

  • Accepts multiple variadic string list inputs and joins them into a single output.
  • Useful for combining string list outputs from parallel pipeline branches.
  • Requires no configuration — works out of the box.

Configuration

  1. Drag the StringListJoiner component onto the canvas from the Component Library.
  2. Click the component to open the configuration panel.
  3. Configure the parameters as needed.

Connections

StringListJoiner accepts multiple inputs of type List[str] from any components that output string lists. It outputs a single output string.

Usage Example

components:
StringListJoiner:
type: testing.sample_components.joiner.StringListJoiner
init_parameters:

Parameters

Inputs

ParameterTypeDefaultDescription
inputsVariadic[List[str]]One or more string lists to join.

Outputs

ParameterTypeDefaultDescription
outputstrThe joined string output.

Init Parameters

These are the parameters you can configure in Pipeline Builder:

ParameterTypeDefaultDescription

Run Method Parameters

These are the parameters you can configure for the component's run() method. This means you can pass these parameters at query time through the API, in Playground, or when running a job. For details, see Modify Pipeline Parameters at Query Time.

ParameterTypeDefaultDescription
inputsVariadic[List[str]]One or more string lists to join.