changelog

Vercel AI SDK Adds Support for Grok 4.6 in @ai-sdk/xai 2.0.86 Patch

TL;DR

Vercel shipped @ai-sdk/xai version 2.0.86, a patch release that adds support for Grok 4.6 models in its xAI provider integration. The update lets developers using the Vercel AI SDK route requests to Grok 4.6 without custom API handling.

2 min read
0

What happened

Vercel released version 2.0.86 of @ai-sdk/xai, the xAI provider package for its open-source AI SDK. The changelog entry, published on August 12, lists a single patch change: "feat(xai): add Grok 4.6 models."

The AI SDK is Vercel's TypeScript toolkit for building applications on top of large language models. The @ai-sdk/xai package is the adapter that lets developers call xAI's Grok models through a unified interface rather than hitting xAI's API directly. This release extends that adapter to recognize and route requests to Grok 4.6.

What we know — and don't

The GitHub release notes confirm only that model identifiers for Grok 4.6 were added to the provider package. There is no accompanying announcement in this changelog covering context window size, pricing per token, benchmark scores, or a training cutoff date for Grok 4.6. Those details would need to come from xAI directly, and no official xAI model card or blog post is referenced in this release.

This is also a patch version bump (2.0.85 → 2.0.86), which under semantic versioning typically signals a backward-compatible addition rather than a breaking change — consistent with simply adding new model string identifiers to an existing provider integration rather than altering the SDK's API surface.

Why this matters for developers

For teams already using the Vercel AI SDK, this update means Grok 4.6 becomes callable through the same xai() provider function used for earlier Grok models (such as Grok 4 or Grok 3), without needing to write custom fetch logic against xAI's REST API. Developers can likely reference the new model by an identifier such as grok-4.6 or similar once xAI publishes its official model ID, though the exact string was not specified in the available release notes.

What this means

This release is infrastructure plumbing, not a model launch. It confirms that xAI has models under the "Grok 4.6" designation ready for third-party SDK integration, which suggests an imminent or recent release from xAI itself. But the actual specifications, pricing, and capabilities of Grok 4.6 remain undisclosed in this changelog. Developers should treat this as a signal to watch xAI's own channels for the full model announcement — including benchmarks and pricing — before building production features around it. Until then, the practical takeaway is narrow: if you use the Vercel AI SDK, upgrading to @ai-sdk/xai@2.0.86 is a prerequisite for accessing Grok 4.6 once xAI's API supports it.

Comments

Loading...