This node allows you to combine text inputs into a singular output.

Node Inputs

  1. Text: Text to combine
    • Type: List<Text>

Node Outputs

  1. Processed Text: The combined text
    • Type: Text
    • Example usage: {{combine_text_0.processed_text}}

Example

The below example shows a pipeline that takes various text inputs (e.g., in this case “a” and “b”) and combines them into a singular output (e.g., “ab”).

  1. Text Node: Contains the text “a”
  2. Text Node: Contains the text “b”
  3. Combine Text Node: Combines the text inputs into a singular output
    • Item1: {{text_0.text}}
    • Item2: {{text_1.text}}
  4. Output Node: Displays the combined text
    • Output: {{combine_text_0.processed_text}}