GEMINI 3 7 FLASH

Access gemini-3-7-flash free through Vercel's $5 monthly credit.

Updated 8/30/20261 code examples

About the Model

为什么选择 Gemini 3.7 Flash?

Gemini 3.7 Flash 是 Google 在 2026 年推出的极速混合思考(Hybrid Thinking)模型,在维持亚秒级响应速度的同时提供高达 200 万 Token 的超长上下文。

  • 极速响应与自适应推理:动态调节思考链耗时,兼顾高吞吐与精准解答。
  • 2M 极限上下文:支持整座代码仓库与长视频的快速扫描与定位分析。
  • 超高性价比:推理成本极低,适合海量并发与高频生产级业务调用。

How to Access for Free (via Vercel AI Gateway)

限频免费试用说明

Vercel 为每个团队(包括免费的 Hobby 个人计划)每月提供了价值 $5 的系统层 AI 额度。只要您当月的调用未超出 $5 的等值 token 消耗,即可通过 Vercel AI SDK 免费试用此模型。

Try it in your browser

Pick a model, paste your own free key, and run. Your key is sent once to call the provider and never stored on our servers.

Pick a model, paste your own free key, and run. Your key is sent once to call the provider and never stored on our servers.

Code Examples

javascript
import { generateText } from 'ai';
import { openai } from '@ai-sdk/openai';

const { text } = await generateText({
  model: google('gemini-3.7-flash'),
  prompt: 'Hello AI!',
});
console.log(text);

Community Feedback

Comments are tied to your GitHub account — sign in to join the discussion.