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

# Produce Text

> Generate one clean text result for each prompt.

**Produce Text** takes a list of prompts and returns one separate string for
each. The model is instructed to provide only the requested text without extra
commentary.

## Inputs

| Input                   | Type            | Required | Description                          |
| ----------------------- | --------------- | -------- | ------------------------------------ |
| **Third-party account** | OpenAI account  | Yes      | The API key used for generation.     |
| **Model**               | OpenAI model    | Yes      | Defaults to GPT-5 Mini.              |
| **Prompts**             | List of strings | Yes      | One or more generation instructions. |

## Outputs

Each prompt creates a corresponding **Produced Text 1**, **Produced Text 2**,
and later output. All prompts are sent in one model request, but each result is
returned through its own connection.

## Example

Use three prompts to generate:

1. A subject line under 50 characters.
2. A two-sentence summary of the source text.
3. A short call to action.

Connect each produced output to the field that needs it.

<Note>
  Use **Chat** instead when you need one response that synthesizes several
  instructions or must return a structured object.
</Note>
