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

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

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

### Options

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

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

<ParamField path="language" type="'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' | string" default="auto" />

<ParamField path="format" type="'mp3' | 'pcm_s16le' | 'pcm_f32le' | 'ulaw' | 'webm' | string" default="pcm_s16le" />

<ParamField path="sample_rate" type="'8000' | '16000' | '24000' | number" default="24000" />

<ParamField path="seed" type="number | null" default="null" />

<ParamField path="temperature" type="number" default="1" />

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

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