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

# Best Practices

> Tips and guidelines for creating effective voice agents

## Overview

Follow these best practices to create voice agents that sound natural and achieve your business goals.

## Conversation Design

### Keep Greetings Short

Your agent's opening should be brief and clear:

<CardGroup cols={2}>
  <Card title="Good" icon="check" color="#16A34A">
    "Hi, this is Sarah from Acme Corp. How can I help you today?"
  </Card>

  <Card title="Avoid" icon="xmark" color="#DC2626">
    "Hello and welcome to Acme Corporation, the leading provider of innovative solutions. My name is Sarah, your virtual assistant, and I'm here to help you with any questions you might have about our products and services..."
  </Card>
</CardGroup>

**Rule of thumb**: Keep greetings under 30 words.

### Use Natural Language

Write how people actually talk, not how they write:

| Instead of...                        | Use...                        |
| ------------------------------------ | ----------------------------- |
| "Please provide your account number" | "What's your account number?" |
| "I will now transfer you"            | "Let me transfer you"         |
| "Affirmative"                        | "Yes" or "Got it"             |

### Handle Silence Gracefully

If the caller doesn't respond:

1. First prompt: "Are you still there?"
2. Second prompt: "I didn't catch that. Could you repeat?"
3. After 3 attempts: Offer to call back later

### Plan for the Unexpected

Your agent should handle:

* **Off-topic questions**: Politely redirect to the main purpose
* **Unclear responses**: Ask for clarification naturally
* **Frustrated callers**: Acknowledge and offer to transfer to a human

## Voice & Tone

### Match Your Brand

Your agent's personality should reflect your company:

* **Professional services**: Formal, clear, efficient
* **Consumer brands**: Friendly, warm, conversational
* **Tech companies**: Helpful, knowledgeable, patient

### Avoid Robotic Patterns

<Warning>
  Callers quickly disengage when they realize they're talking to a bot that sounds like a bot.
</Warning>

Tips for natural-sounding agents:

* Vary sentence length
* Use contractions ("I'm" instead of "I am")
* Add brief acknowledgments ("Got it", "Sure thing")
* Pause naturally between topics

## Technical Best Practices

### Test Before Launch

Always test your agent using [Looptalk](/features/looptalk) before going live:

1. Test the happy path (ideal conversation)
2. Test edge cases (confused caller, wrong answers)
3. Test with background noise
4. Test with different accents/speaking speeds

### Monitor and Iterate

After launch:

* Review call recordings regularly
* Track completion rates
* Note common failure points
* Update the workflow based on real data

### Set Realistic Expectations

Voice AI works best for:

* ✅ Structured conversations with clear goals
* ✅ Information collection and verification
* ✅ Appointment scheduling
* ✅ FAQ handling

Consider human handoff for:

* ❌ Complex negotiations
* ❌ Emotional support situations
* ❌ Highly technical troubleshooting

## Quick Checklist

<Check>Greeting is under 30 words</Check>
<Check>Language is conversational, not formal</Check>
<Check>Silence and confusion are handled</Check>
<Check>Agent can gracefully hand off to humans</Check>
<Check>Tested with Looptalk before launch</Check>

## Next Steps

* [Create your first workflow](/workflows/creating-workflows)
* [Configure workflow settings](/workflows/workflow-editor)
* [Test with Looptalk](/features/looptalk)
