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

# Language Audit

> Control which words and phrases your AI uses in outbound messages. Built into Tuco AI iMessage automation — works with HubSpot, Salesforce, GoHighLevel, and.

# Language Audit

Configure allowed and blocked phrases for your workspace. The AI will avoid blocked phrases and prefer allowed phrases when generating messages.

## API

### Get Language Config

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET https://app.tuco.ai/api/language-audit \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</CodeGroup>

**Response:**

```json theme={null}
{
  "allowedPhrases": ["custom build", "adventure-ready", "van life"],
  "blockedPhrases": ["cheap", "discount", "deal"],
  "customInstructions": "Always use brand voice: enthusiastic but professional."
}
```

### Update Language Config

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://app.tuco.ai/api/language-audit \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "allowedPhrases": ["custom build", "adventure-ready"],
      "blockedPhrases": ["cheap", "deal"],
      "customInstructions": "Use words from actual customer calls."
    }'
  ```
</CodeGroup>

## How It Works

1. Add phrases from your actual customer calls, ads, and reviews
2. Block generic AI-sounding words ("leverage", "synergy", "utilize")
3. The sequence processor and KB worker reference these when generating content
4. Custom instructions are injected into the AI system prompt

## Best Practices

* Pull words from Fathom call transcripts
* Review ad copy for brand-consistent language
* Update quarterly as your messaging evolves
