> ## 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

> TypeScript 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.

```ts theme={null}
import { AzureTTS } from '@zeroruntime/js-sdk/plugins';  // direct to the vendor, with your key
```

### Options

<ParamField path="voice" type="string" default="en-US-JennyNeural" />

<ParamField path="language" type="string | null" default="null" />

<ParamField path="tuning" type="Record<string, any> | null" default="null" />

<ParamField path="style" type="Record<string, any> | null" default="null" />

<ParamField path="streaming" type="boolean" default="true" />

<ParamField path="speech_region" type="string | null" default="null" />

<ParamField path="speech_endpoint" type="string | null" default="null" />

<ParamField path="deployment_id" type="string | null" default="null" />
