Skip to main content

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

curl -X GET https://app.tuco.ai/api/language-audit \
  -H "Authorization: Bearer YOUR_API_KEY"
Response:
{
  "allowedPhrases": ["custom build", "adventure-ready", "van life"],
  "blockedPhrases": ["cheap", "discount", "deal"],
  "customInstructions": "Always use brand voice: enthusiastic but professional."
}

Update Language Config

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."
  }'

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