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

# Lmnt

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

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

## LMNTTTS

Initialize the LMNT TTS plugin (WebSocket streaming).

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

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

### Fields

<ParamField path="voice" type="str" default="ava" />

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

<ParamField path="language" type="Union[Literal['auto', 'ar', 'as', 'bn', 'cs', 'da', 'de', 'en', 'es', 'fi', 'fr', 'hi', 'id', 'it', 'ja', 'ko', 'ml', 'mr', 'nl', 'pl', 'pt', 'ru', 'sk', 'sv', 'ta', 'te', 'th', 'tr', 'uk', 'ur', 'vi', 'zh'], str]" default="UNSET" />

<ParamField path="format" type="Union[Literal['mp3', 'pcm_s16le', 'pcm_f32le', 'ulaw', 'webm'], str]" default="UNSET" />

<ParamField path="sample_rate" type="Union[Literal[8000, 16000, 24000], int]" default="UNSET" />

<ParamField path="seed" type="Optional[int]" default="None" />

<ParamField path="temperature" type="float" default="1.0" />

<ParamField path="top_p" type="float" default="0.8" />

<ParamField path="ws_url" type="str" default="wss://api.lmnt.com/v1/ai/speech/stream" />
