
Developers building production agents need higher token efficiency, lower latency, and more reliable performance. Today, Google has released three new Gemini models. The lineup is Gemini 3.6 Flash, Gemini 3.5 Flash-Lite, and Gemini 3.5 Flash Cyber. All three sit in the Flash tier, which Google tunes for speed, cost, and high-volume agentic work rather than maximum reasoning depth.
Gemini 3.6 Flash: better quality, fewer tokens, lower price
Gemini 3.6 Flash is the new default workhorse. It builds on 3.5 Flash and targets coding, knowledge work, and multimodal tasks. The main point is efficiency. On the Artificial Analysis Index, 3.6 Flash uses 17% fewer output tokens than 3.5 Flash. On the DeepSWE benchmark by Datacurve, Google reports up to a 65% reduction. The model also takes fewer reasoning steps and tool calls per multi-step workflow.
Pricing moves down alongside efficiency. Gemini 3.6 Flash is priced at $1.50 per 1M input tokens and $7.50 per 1M output tokens. The output rate drops from the previous $9.00 on 3.5 Flash. Lower verbosity and a lower output price reduces the total cost per agentic task.
Quality gains accompany the efficiency gains. On DeepSWE, 3.6 Flash scores 49% versus 37% for 3.5 Flash. On MLE Bench, it reaches 63.9% versus 49.7%. On OSWorld-Verified, it hits 83.0% versus 78.4%. On GDPval-AA v2, a knowledge-work benchmark, it scores 1421 versus 1349. Computer use is now a built-in client-side tool through the Gemini API and Gemini Enterprise. Early customers including Hebbia and Harvey cite gains in document parsing, chart and data analysis, and report drafting.
Google is shipping 3.6 Flash with enhanced Frontier Safety safeguards. These cover Chemical, Biological, Radiological, and Nuclear (CBRN) and cyber-offense misuse. Full details are in the 3.6 Flash model card.
The interactive explainer below lets you compare each model against its predecessor and estimate token cost at your own volume.
‘;
html+=’
‘+d.lead+’
‘;
html+=’
‘;
html+=’
New modelPredecessorBaseline marker
‘;
html+=’
‘+d.note+’
‘;
panel.innerHTML=html;
requestAnimationFrame(function(){panel.querySelectorAll(‘.fill’).forEach(function(f){f.style.width=f.getAttribute(‘data-w’)+’%’;});postSize();});
}
var tabs=document.querySelectorAll(‘.tab’);
tabs.forEach(function(t){function act(){tabs.forEach(function(x){x.classList.remove(‘active’);});t.classList.add(‘active’);render(t.getAttribute(‘data-k’));}
t.addEventListener(‘click’,act);t.addEventListener(‘keydown’,function(e){if(e.key===’Enter’||e.key===’ ‘){e.preventDefault();act();}});});
var inR=document.getElementById(‘inR’),outR=document.getElementById(‘outR’),inV=document.getElementById(‘inV’),outV=document.getElementById(‘outV’);
var cF=document.getElementById(‘c_flash’),cL=document.getElementById(‘c_lite’),cO=document.getElementById(‘c_old’),cnote=document.getElementById(‘calcnote’);
function money(x){return ‘$’+x.toLocaleString(‘en-US’,{minimumFractionDigits:2,maximumFractionDigits:2});}
function calc(){
var i=+inR.value,o=+outR.value;inV.textContent=i;outV.textContent=o;
var flash=i*1.50+o*7.50,lite=i*0.30+o*2.50,old=i*1.50+o*9.00;
cF.textContent=money(flash);cL.textContent=money(lite);cO.textContent=money(old);
var save=old-flash,pct=old>0?Math.round((save/old)*100):0;
cnote.innerHTML=’At this mix, 3.6 Flash’s lower output rate ($9.00 → $7.50) trims about ‘+money(save)+’ (‘+pct+’%) versus the old output price. Flash-Lite is cheaper still for high-volume, lighter work.’;
postSize();
}
inR.addEventListener(‘input’,calc);outR.addEventListener(‘input’,calc);
function postSize(){try{var h=document.getElementById(‘mtp-explorer’).offsetHeight+40;parent.postMessage({mtpEmbed:’explorer’,height:h},’*’);}catch(e){}}
window.addEventListener(‘load’,postSize);window.addEventListener(‘resize’,postSize);
render(‘flash’);calc();
})();






