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
- Drag the
StringListJoinercomponent onto the canvas from the Component Library. - Click the component to open the configuration panel.
- 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
| Parameter | Type | Default | Description |
|---|---|---|---|
| inputs | Variadic[List[str]] | One or more string lists to join. |
Outputs
| Parameter | Type | Default | Description |
|---|---|---|---|
| output | str | The joined string output. |
Init Parameters
These are the parameters you can configure in Pipeline Builder:
| Parameter | Type | Default | Description |
|---|
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.
| Parameter | Type | Default | Description |
|---|---|---|---|
| inputs | Variadic[List[str]] | One or more string lists to join. |
Was this page helpful?