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

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

## ElevenLabsSTT

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

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

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

### Fields

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

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

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

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

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

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

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

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

<ParamField path="base_url" type="str" default="UNSET" />

<ParamField path="detect_language" type="bool" default="False" />
