131const url = `wss://api.x.ai/v1/realtime?model=${MODEL}`;131const url = `wss://api.x.ai/v1/realtime?model=${MODEL}`;
132```132```
133 133
134134| Model | Description | || Model | Description |
135135|-------|-------------|---||-------|-------------|
136136| `grok-voice-think-fast-1.0` | Flagship voice model | || `grok-voice-latest` | Alias that tracks the newest voice model |
137137| `grok-voice-fast-1.0` | Legacy voice model | deprecated || `grok-voice-think-fast-1.0` | Flagship voice model |
138
139> [!NOTE]
140>
141> `grok-voice-latest` always points to the newest model (currently `grok-voice-think-fast-1.0`).
142 138
143## Session Parameters139## Session Parameters
144 140
1631* **Remove workaround prompting.** Prompt hacks and edge-case fixes needed for GPT models are unnecessary. Strip out instructions added solely to patch bugs or limitations of the previous model.1627* **Remove workaround prompting.** Prompt hacks and edge-case fixes needed for GPT models are unnecessary. Strip out instructions added solely to patch bugs or limitations of the previous model.
1632* **Reasoning is enabled by default.** The default `reasoning.effort` is `"high"` for complex multi-step instructions, nuanced tone, and ambiguous queries. Set it to `"none"` to disable reasoning.1628* **Reasoning is enabled by default.** The default `reasoning.effort` is `"high"` for complex multi-step instructions, nuanced tone, and ambiguous queries. Set it to `"none"` to disable reasoning.
1633 1629
1634#### Deprecated model
1635
1636This model remains available for existing integrations, but new applications should use `grok-voice-latest`.
1637
1638* `grok-voice-fast-1.0`: Legacy voice model with similar prompting characteristics to GPT realtime models.
1639
1640The deprecated model follows the same client and server event flow as `grok-voice-latest`, so existing integrations can pin to it while migrating.
1641
1642> [!NOTE]1630> [!NOTE]
1643>1631>
1644> `grok-voice-latest` always points to the newest model (currently `grok-voice-think-fast-1.0`). Pin to a versioned model name in production for stability.1632> `grok-voice-latest` always points to the newest model (currently `grok-voice-think-fast-1.0`). Pin to a versioned model name in production for stability.