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

# Accent Translation

> Real-time accent modulation that preserves voice identity and emotion.

Accent Translation modifies global accents in real time, allowing speakers to be instantly understood while preserving what makes every voice unique. It refines how accented speech is heard — improving clarity and comprehension the first time — without stripping away the heritage, tone, or emotion that make a voice human.

### Key Features

<CardGroup cols={3}>
  <Card title="Improves understanding" icon="language">
    Refines how accented speech is heard so listeners understand clearly the first time — no repetition or clarification.
  </Card>

  <Card title="Preserves voice identity" icon="microphone">
    Keeps the speaker's natural voice, tone, and emotion intact. Every conversation stays authentic and human.
  </Card>

  <Card title="Real-time, low cost" icon="bolt">
    No perceptible delay means no awkward pauses or conversational resets. Low compute cost for high concurrency.
  </Card>
</CardGroup>

## Specifications

**Model ID:** `AT5.2` <br />**Category:** Accent Translation<br />**Type:** Human ↔ Human

<CardGroup cols={3}>
  <Card title="Real-time" icon="bolt">
    Streaming latency
  </Card>

  <Card title="24kHz" icon="waveform-lines">
    Max sample rate
  </Card>

  <Card title="US / UK" icon="globe">
    Output accents
  </Card>
</CardGroup>

## Use Cases

<CardGroup cols={2}>
  <Card title="Contact Centers" icon="headset">
    Agent-customer calls. Instant clarity that improves CSAT, QA scores, and first-call resolution.
  </Card>

  <Card title="Financial Services" icon="building-columns">
    Build trust and clarity in every conversation so customers move forward with confidence.
  </Card>

  <Card title="Healthcare" icon="stethoscope">
    Deliver clarity and empathy from the very first patient or member interaction.
  </Card>

  <Card title="Travel & Retail" icon="plane">
    Turn frustrated moments into loyal relationships through clear, natural communication.
  </Card>
</CardGroup>

## Code Example

Create an audio processor with the Accent Translation model:

```python theme={null}
audio_params = sanas_remote_sdk.AudioParams()
audio_params.modelName = "AT5.2"
audio_params.sampleRate = 16000  # Or up to 24kHz
audio_params.outputAccent = "US"  # Or "UK"
processor, create_result = sdk.CreateAudioProcessor(audio_params)
```

For full setup and initialization, see the [Quick Start →](/Docs/Getting-Started/Quick-Start)

## Next Steps

<CardGroup cols={3}>
  <Card title="Quick Start" icon="rocket" href="/Docs/Getting-Started/Quick-Start">
    Get up and running with Sanas SDK in under 5 minutes.
  </Card>

  <Card title="API Reference" icon="book" href="/API-Reference/Overview">
    Full SDK documentation for classes, enums, and callbacks.
  </Card>

  <Card title="Processing Multiple Streams" icon="layer-group" href="/Docs/Tutorials/Processing-Multiple-Streams">
    Handle multiple concurrent audio streams.
  </Card>
</CardGroup>
