Skip to main content
Prompt Concatenator merges several connected text inputs into one string, inserting a configurable separator between each.

When to use

  • Combine a brief with product copy
  • Merge a system prompt and a user prompt
Common pattern: [text_prompt, text_prompt] → prompt_concatenator → generate_text.

Inputs

Texts
text
required
The text inputs to merge. Required. Connect at least two, accepts multiple inputs and an array.

Outputs

Merged text
text
The combined text.

Configuration

separator
string
default:"\\n\\n"
The text inserted between each connected input. Use \n for newlines.