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

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

Create an STT instance configured for Google Cloud Speech-to-Text.

```ts theme={null}
import { GoogleSTT } from '@zeroruntime/js-sdk/inference';  // same fields, through the gateway, no vendor key
import { GoogleSTT } from '@zeroruntime/js-sdk/plugins';  // direct to the vendor, with your key
```

### Options

<ParamField path="languages" type="string | string[]" default="en-US" />

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

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

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

<ParamField path="interim_results" type="boolean" default="true" />

<ParamField path="punctuate" type="boolean" default="true" />

<ParamField path="min_confidence_threshold" type="number" default="0" />

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

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

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

<ParamField path="voice_activity_timeout" type="Record<string, any>" default="null" />

<ParamField path="endpointing_sensitivity" type="string | null" default="null" />
