StringJoiner
Component to join strings from different components to a list of strings.
Basic Information
- Type:
haystack_integrations.joiners.string_joiner.StringJoiner
Inputs
| Parameter | Type | Default | Description |
|---|---|---|---|
| strings | Variadic[str] | strings from different components |
Outputs
| Parameter | Type | Default | Description |
|---|---|---|---|
| strings | List[str] | A dictionary with the following keys: - strings: Merged list of strings |
Overview
Work in Progress
Bear with us while we're working on adding pipeline examples and most common components connections.
Component to join strings from different components to a list of strings.
Usage Example
components:
StringJoiner:
type: components.joiners.string_joiner.StringJoiner
init_parameters:
Parameters
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 |
|---|---|---|---|
| strings | Variadic[str] | strings from different components |
Was this page helpful?