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

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

## GoogleLLM

Initialize the Google LLM plugin.

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

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

### Fields

<ParamField path="model" type="str" default="gemini-2.5-flash-lite" />

<ParamField path="temperature" type="float" default="0.7" />

<ParamField path="tool_choice" type="Literal['auto', 'required', 'none']" default="UNSET" />

<ParamField path="max_output_tokens" type="int | None" default="None; pinned" />

<ParamField path="top_p" type="float | None" default="None" />

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

<ParamField path="presence_penalty" type="float | None" default="None" />

<ParamField path="frequency_penalty" type="float | None" default="None" />

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

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

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

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

<ParamField path="safety_settings" type="list | None" default="None" />

<ParamField path="http_options" type="Any | None" default="None" />

<ParamField path="thinking_level" type="str | None" default="None" />

<ParamField path="include_thoughts" type="bool | None" default="None" />
