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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Create dialogue

> Converts a multi-speaker script into one audio file.

`elevenLabs.createDialogue` requires `inputs`, an ordered list of `{ text, voiceId }` segments. A request can contain at most 10 distinct voices and 2,000 total characters. `modelId` defaults to `eleven_v3`, `outputFormat` to `mp3_44100_128`, and `applyTextNormalization` to `auto`; `languageCode` and `seed` are optional. It returns a generated `File`.

```ts automations/create-dialogue.automation.ts theme={null}
import { automation, markSignificant, onInvocation } from "automate.ax"
import { elevenLabs } from "automate.ax/elevenlabs"

export default automation("Create dialogue", () => {
  onInvocation()
  markSignificant(
    elevenLabs.createDialogue({
      inputs: [
        { text: "Are we ready?", voiceId: "host-voice" },
        { text: "Ready.", voiceId: "guest-voice" },
      ],
    }),
  )
})
```
