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

# Elevenlabs

> TypeScript API reference for the elevenlabs speech-to-text provider.

## ElevenLabsSTT

ElevenLabs Realtime Speech-to-Text (STT) client.

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

### Options

<ParamField path="model_id" type="string" default="scribe_v2_realtime" />

<ParamField path="language_code" type="string" default="en" />

<ParamField path="sample_rate" type="number" default="48000" />

<ParamField path="commit_strategy" type="string" default="vad" />

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

<ParamField path="vad_threshold" type="number" default="0.4" />

<ParamField path="min_speech_duration_ms" type="number" default="50" />

<ParamField path="min_silence_duration_ms" type="number" default="50" />

<ParamField path="base_url" type="string" default="wss://api.elevenlabs.io/v1/speech-to-text/realtime" />

<ParamField path="detect_language" type="boolean" default="false" />
