> ## Documentation Index
> Fetch the complete documentation index at: https://docs.orisu.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Prompt Concatenator

> Join multiple text inputs with a separator.

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

<ParamField body="Texts" type="text" required>
  The text inputs to merge. Required. Connect at least two, accepts multiple inputs and an array.
</ParamField>

## Outputs

<ParamField body="Merged text" type="text">
  The combined text.
</ParamField>

## Configuration

<ParamField body="separator" type="string" default="\n\n">
  The text inserted between each connected input. Use `\n` for newlines.
</ParamField>
