changelog

Vercel AI SDK Patch Adds Support for Unreleased 'gemini-3.7-flash' Model ID

TL;DR

Vercel shipped a patch release of @ai-sdk/google-vertex (v4.0.182) that adds support for a model identifier called 'gemini-3.7-flash.' Google has not publicly announced this model, and no official details on pricing, context window, or benchmarks exist yet.

2 min read
0

What happened

Vercel released version 4.0.182 of @ai-sdk/google-vertex, a patch update to its TypeScript SDK for accessing Google's models through Vertex AI. The release notes list a single functional change: support for a model identifier called gemini-3.7-flash, added in commit 71e94ad. The patch also bumps the companion @ai-sdk/google package to version 3.0.109 to keep the dependency tree in sync.

This is a changelog-level SDK update, not an announcement from Google. The AI SDK repository frequently adds new model ID strings ahead of, or in parallel with, official provider announcements, since developers need the SDK to recognize a model name before they can call it through the API.

Why 'gemini-3.7-flash' matters

Google has not published any official documentation, blog post, or model card referencing gemini-3.7-flash as of this writing. There is no confirmed context window, pricing, benchmark data, or release date for this model. Its appearance in the AI SDK codebase indicates that Vercel's engineering team added the string to support forthcoming or already-live Vertex AI endpoints, but until Google confirms the model publicly, its existence, capabilities, and availability should be treated as unverified.

The naming convention — following Gemini's established Flash tier for low-latency, lower-cost inference — suggests, if real, this would slot into Google's lightweight model lineup alongside prior Flash releases. But that is inference from the string alone, not a confirmed fact.

What's actually in the patch

  • Adds recognition for the gemini-3.7-flash model identifier in @ai-sdk/google-vertex
  • Updates the @ai-sdk/google dependency to 3.0.109 to match
  • No changes to SDK APIs, authentication, streaming behavior, or tool-calling logic were listed

This is a narrow, mechanical patch. Developers using the Vercel AI SDK against Vertex AI can now reference gemini-3.7-flash as a model string in their code, assuming Google's backend actually serves requests for that identifier. If the endpoint isn't live yet, calls using this ID will fail regardless of SDK support.

What this means

SDK-level model ID additions like this one are often the earliest public signal of an unannounced model, arriving before any official vendor communication. But an ID string in open-source code is not confirmation of a shipped product — Google could be testing internally, staging a rollout, or the identifier could map to an experimental or restricted-access endpoint not yet available to the general public. Teams building on Vertex AI should treat gemini-3.7-flash as unconfirmed until Google publishes pricing, benchmarks, and a model card. For now, the practical takeaway is narrower: if you use the Vercel AI SDK, updating to @ai-sdk/google-vertex@4.0.182 costs nothing and keeps your dependency tree current, but there's no new capability to act on until Google confirms the model exists.

Comments

Loading...