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

# Azure

> Python API reference for the azure text-to-speech provider.

<Card title="Usage guide" icon="book" href="/plugins/tts/azure" horizontal>
  Setup, environment variables, and Python/JavaScript/Go usage examples.
</Card>

## AzureTTS

Initialize the Azure TTS plugin.

Slot: tts. Route: plugins -- direct to the vendor, with AZURE\_SPEECH\_KEY or
an explicit api\_key.

The target accepts \*\*kwargs, so the fields below are what it documents
rather than everything it tolerates; the rest go through `extra`.

```python theme={null}
from zeroruntime.plugins import AzureTTS  # direct to the vendor, with your key
```

### Fields

<ParamField path="voice" type="str" default="en-US-EmmaNeural'; pinned" />

<ParamField path="language" type="str | None" default="None" />

<ParamField path="tuning" type="Optional[Mapping[str, Any]]" default="UNSET" />

<ParamField path="style" type="Optional[Mapping[str, Any]]" default="UNSET" />

<ParamField path="streaming" type="bool" default="True" />

<ParamField path="speech_region" type="str | None" default="None" />

<ParamField path="speech_endpoint" type="str | None" default="None" />

<ParamField path="deployment_id" type="str | None" default="None" />
