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

# Murfai

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

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

## MurfAITTS

Initialize the Murf.ai TTS plugin.

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

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

### Fields

<ParamField path="region" type="str" default="GLOBAL" />

<ParamField path="model" type="str" default="Falcon" />

<ParamField path="voice" type="str" default="en-US-natalie" />

<ParamField path="voice_settings" type="Mapping[str, Any] | None" default="UNSET" />

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

<ParamField path="min_buffer_size" type="int" default="3" />

<ParamField path="max_buffer_delay_in_ms" type="int" default="0" />

<ParamField path="max_connection_age_sec" type="float" default="300.0" />
