Gemini 3.7 Flash (gemini-3.7-flash) is generally available (GA) and ready for production use. It is our most intelligent workhorse model yet for coding and agents.
This guide explains what's new in Gemini 3.7 Flash, API changes, code examples, and migration guidance.
New model
| Model | Model ID | Default thinking level | Pricing | Description |
|---|---|---|---|---|
| Gemini 3.7 Flash | gemini-3.7-flash |
medium |
3.7 Flash is available through the end of year at an introductory price of $0.75/1M input tokens and $3.75/1M output tokens; see pricing for more details. | Our most capable Flash model, built for complex coding, agentic workflows, and reliable multi-step execution. |
Gemini 3.7 Flash supports a 1M token context window, 64k max output tokens, tunable thinking levels (low, medium, high), and the same suite of built-in tools as 3.6 Flash.
For complete specs, see the Gemini 3.7 Flash model page. For detailed pricing, see the pricing page.
Quickstart
Python
from google import genai
client = genai.Client()
response = client.models.generate_content(
model="gemini-3.7-flash",
contents="Write a three.js script that renders a realistic 3D black hole."
)
print(response.text)
JavaScript
import { GoogleGenAI } from "@google/genai";
const ai = new GoogleGenAI({});
const response = await ai.models.generateContent({
model: "gemini-3.7-flash",
contents: "Write a three.js script that renders a realistic 3D black hole.",
});
console.log(response.text);
REST
curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-3.7-flash:generateContent" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H 'Content-Type: application/json' \
-X POST \
-d '{
"contents": [{
"parts": [{"text": "Write a three.js script that renders a realistic 3D black hole."}]
}]
}'
What's new in Gemini 3.7 Flash
- Coding and agentic tasks: Significantly higher quality on real-world software engineering and agentic benchmarks, improving issue resolution and reducing failed agent loops.
- Web development and stronger design parity: Generates higher-fidelity desktop and web application code directly from design mocks, with strong gains in design adherence and in auditing existing codebases against mocks to verify 1:1 design parity.
- Promotional pricing: Gemini 3.7 Flash will be available at an introductory price of $0.75/1M input tokens and $3.75/1M output tokens. We’re also applying this new rate to 3.6 Flash. Introductory pricing expires on December 31, 2026; after, $1.50/1M input tokens and $7.50/1M output tokens will apply.
Choosing the right model
Reference the below table to review recommended migration targets for your workloads. To upgrade from Gemini 3.5 Flash, Gemini 3 Flash (Preview), or Gemini 3.1 Pro, ensure you remove deprecated sampling parameters (temperature, top_p, top_k) and prefilled model turns. Gemini 3.6 Flash already no longer supported these parameters.
| Model | Primary use cases | Recommended migration target |
|---|---|---|
Gemini 3.7 Flashgemini-3.7-flash |
Code generation, spatial/multimodal reasoning, multi-step agentic workflows, design adherence | Gemini 3.6 Flash, Gemini 3.5 Flash, Gemini 3 Flash (Preview), or Gemini 3.1 Pro |
Understanding reasoning levels
Gemini 3.7 Flash gives developers flexible control over latency and intelligence by adjusting the model's thinking level:
- Low thinking effort: Reduces time-to-answer for latency-critical tasks like incident response pipelines, real-time chat, writing drafts, and fast data analysis.
- Medium (default): Best quality for most tasks. Recommended for complex code and agentic use cases, with higher first-pass accuracy.
High thinking effort: Maximizes the model's ability to think and use tools. Best for complex reasoning, hard math, and the most difficult coding and agent tasks. Allows extended thoughts and function calls, with higher token consumption and cost.
Python
from google import genai
from google.genai import types
client = genai.Client()
response = client.models.generate_content(
model="gemini-3.7-flash",
contents="Analyze this payment processing pipeline for race conditions during retry attempts and rewrite the transaction locks safely.",
config=types.GenerateContentConfig(
thinking_config=types.ThinkingConfig(
thinking_level="medium" # Balanced reasoning effort for complex tasks
),
),
)
print(response.text)
JavaScript
import { GoogleGenAI } from "@google/genai";
const ai = new GoogleGenAI({});
const response = await ai.models.generateContent({
model: "gemini-3.7-flash",
contents: "Analyze this payment processing pipeline for race conditions during retry attempts and rewrite the transaction locks safely.",
config: {
thinkingConfig: {
thinkingLevel: "medium", // Balanced reasoning effort for complex tasks
},
},
});
console.log(response.text);
REST
curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-3.7-flash:generateContent" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H 'Content-Type: application/json' \
-X POST \
-d '{
"contents": [{
"parts": [{"text": "Analyze this payment processing pipeline for race conditions during retry attempts and rewrite the transaction locks safely."}]
}],
"generationConfig": {
"thinkingConfig": {
"thinkingLevel": "medium"
}
}
}'
Updated Antigravity agent
Migration checklist
`/gemini-api-dev migrate my app to Gemini 3.7 Flash`
Migrate to gemini-3.7-flash
- Update Model ID: Change your target model string to
gemini-3.7-flash. - Remove deprecated sampling parameters:
- Strip
temperature,top_p, andtop_kfrom generation configs. - Replace
thinking_budgetwith the string enumthinking_level. - Remove
candidate_count(unsupported in Gemini 3.x).
- Strip
- Enforce turn validation rules:
- Remove prefilled model turns.
- Ensure the final user turn contains non-empty text.
- Audit function calling:
- Place multimodal assets inside the response payload.
- Format inline instructions using
\n\n. - If you see
Malformed_Function_Callerrors tied to pre-tool text, see Workarounds for pre-tool text requirements. - Only if using generateContent API: Ensure all
FunctionResponseobjects includecall_idandname.
- Baseline Gemini 3.x requirements: For SDK updates and thought signature preservation, see the Gemini 3.5 Migration Checklist.
Pricing
Introductory pricing applies across Google AI Studio and Gemini Enterprise Agent Platform through December 31, 2026 for both Gemini 3.7 Flash and Gemini 3.6 Flash. From January 1, 2027, standard pricing will take effect. For details, please see pricing page.
Next steps
- Review API specs on the Models Overview.
- Explore multi-agent orchestration in the Interactions API Guide.
- Test and refine prompts in Google AI Studio.