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

# Google

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

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

## GoogleSTT

Initialize the Google STT plugin.

Slot: stt. Route: plugins -- direct to the vendor, with
GOOGLE\_APPLICATION\_CREDENTIALS or an explicit api\_key.

The target accepts \*\*kwargs, so the fields below are what it documents
rather than everything it tolerates; the rest go through `extra`.

```python theme={null}
from zeroruntime.plugins import GoogleSTT  # direct to the vendor, with your key
from zeroruntime.inference import GoogleSTT  # same fields, through the gateway, no vendor key
```

### Fields

<ParamField path="languages" type="Union[str, list[str]]" default="en-US" />

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

<ParamField path="input_sample_rate" type="int | None" default="None" />

<ParamField path="output_sample_rate" type="int | None" default="None" />

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

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

<ParamField path="min_confidence_threshold" type="float" default="0.1; pinned" />

<ParamField path="location" type="str" default="global" />

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

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

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

<ParamField path="endpointing_sensitivity" type="Optional[str]" default="None" />
