Grok Voice Think Fast 2.0 from xAI is now available on AI Gateway. It is a speech-to-speech voice model that takes audio in and audio out, improving on the previous Grok Voice model in reasoning, transcription accuracy, and conversation.
The model reasons in parallel with speech, so it can think through a query while talking without adding latency. It has also been trained to use fewer reasoning tokens than before, so tool calls fire sooner, often before the end of the agent's first sentence. Transcription holds up in real-world conditions, including background noise and telephony compression.
Use xai/grok-voice-think-fast-2.0
through the AI SDK's realtime API. Mint a short-lived token on the server so your API key never reaches the client:
import { gateway } from "@ai-sdk/gateway";
export async function POST() { const { token, url } = await gateway.experimental_realtime.getToken({ model: "xai/grok-voice-think-fast-2.0", }); return Response.json({ token, url, tools: [] });}
See the realtime documentation to build a voice agent with Grok Voice Think Fast 2.0. Try out the model in the AI Gateway playground.
Facts Only
* Grok Voice Think Fast 2.0 is available on the AI Gateway.
* It is a speech-to-speech voice model.
* The model improves reasoning, transcription accuracy, and conversation quality over previous Grok Voice models.
* The model reasons in parallel with speech without adding latency.
* It has been trained to use fewer reasoning tokens, causing tool calls to fire sooner.
* Transcription holds up in real-world conditions like background noise and telephony compression.
* Access is via the AI SDK's realtime API.
* A server-side token process is required for API key security.
Executive Summary
Full Take
Sentinel — Human
The text reads like an accurate summary of a technical product announcement, characterized by specific feature descriptions and code examples rather than broad synthesis.
