> ## 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 persona

> Create an AI persona for CloseBot agents.

`closeBot.createPersona` creates a reusable AI persona.

```ts automations/create-closebot-persona.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { closeBot } from "automate.ax/closebot"

export default automation("Create CloseBot persona", () => {
  onDashboardRun({ title: "Create CloseBot persona" })

  closeBot.createPersona({
    personaName: "Concise consultant",
    aiProviderPreferences: ["openai"],
    voiceStyles: "Warm, clear, and direct",
  })
})
```

## Inputs

Provide `personaName` and `aiProviderPreferences`. Optional fields control description, voice, response guidance, typo and message-breakup percentages, response timing, color, and image data.

## Output

Returns the created persona, including its `id`, name, response settings, provider preferences, and bot associations.
