GEMINI LABJP
CHAT — From August 26, Google Chat becomes the Ask Gemini hub for searching, drafting, catching up on threads, and managing tasks and events with Workspace context intact. Two days outANDROID — Gemini replaces Google Assistant on Android from September 4, eleven days from now. Now is the time to check any voice shortcuts you built on AssistantROBOTICS — gemini-robotics-er-1.6-preview shuts down on August 31, seven days out. The ER 2 line succeeds it with spatial reasoning, multi-step tool orchestration, and multi-robot coordinationPRICE — Gemini 3.7 Flash introductory pricing is $0.75 input and $3.75 output per million tokens through December 31. From January 1, 2027 it doubles to $1.50 and $7.50FREE — Google AI Studio still offers a free API tier with daily request limits and no credit card. If you only want to see how 3.7 Flash behaves, that is enough to startSCALE — The Gemini app crossed one billion monthly users on August 11. The split is settling in: 3.1 Pro for deep reasoning, the Flash line for production work where speed and unit cost decideCHAT — From August 26, Google Chat becomes the Ask Gemini hub for searching, drafting, catching up on threads, and managing tasks and events with Workspace context intact. Two days outANDROID — Gemini replaces Google Assistant on Android from September 4, eleven days from now. Now is the time to check any voice shortcuts you built on AssistantROBOTICS — gemini-robotics-er-1.6-preview shuts down on August 31, seven days out. The ER 2 line succeeds it with spatial reasoning, multi-step tool orchestration, and multi-robot coordinationPRICE — Gemini 3.7 Flash introductory pricing is $0.75 input and $3.75 output per million tokens through December 31. From January 1, 2027 it doubles to $1.50 and $7.50FREE — Google AI Studio still offers a free API tier with daily request limits and no credit card. If you only want to see how 3.7 Flash behaves, that is enough to startSCALE — The Gemini app crossed one billion monthly users on August 11. The split is settling in: 3.1 Pro for deep reasoning, the Flash line for production work where speed and unit cost decide
Articles/Advanced
Advanced/2026-07-10Advanced

Images Made With a Retiring Model Can Never Be Made Again — Tracking Regenerability in a Ledger

When Gemini's image generation models shut down on August 17, the assets you made with them can no longer be reproduced the same way. Here is the ledger design and code I use to decide, before the deadline, which assets are regenerable and which must be frozen.

Gemini API218Image Generation5Model Migration6Asset ManagementIndie Development14

Premium Article

I stopped mid-migration, staring at a directory.

The call-site audit was done. Every script and month-end batch that touched a retiring model ID had been found. All that remained was swapping in the new GA model. Then I opened the asset directory for my wallpaper app.

Several hundred images sat there, all produced by the model that is going away. Some already shipped. Some queued for re-export at new device resolutions. And I could not answer a simple question about any of them: if I send this same prompt to the new model, will I get the same look back?

Migration was never about rewriting a model ID. It was about settling the regenerability of past assets before the shutdown date arrives.

Migrating your call sites does not migrate your assets

The usual story about a deprecation notice has two acts. Find the call sites, pick the replacement model, swap it in. That territory is covered in auditing every call site before the August 17 shutdown.

Image generation, though, differs from text generation in one decisive way. The output itself becomes a long-lived asset.

With text, a new model that produces a semantically equivalent answer from the same input causes no practical trouble. Images do not work that way. If I regenerate one image out of a five-image wallpaper series with a new model, the palette and brushwork will not line up. Put them side by side and the seam is visible immediately.

So the real shape of the problem looked like this.

TargetBefore shutdownAfter shutdown
Code call sitesSwap the model IDStill fixable at any time
Existing assetsDetermine regenerabilityThe means of determining it is gone

That bottom-right cell is the whole point. Once the old model is retired, you cannot call it. Which means you can no longer measure how closely a new model's output resembles the old one. That measurement is only possible before the deadline. The moment I understood that asymmetry, my priorities reordered themselves.

What I had failed to record

The first wall I hit was that my assets carried no record of which model or which prompt had produced them.

File names were sequential: wp_aurora_03.png. The generation script held prompts in variables, saved the image on success, and exited. Back then I assumed I could always make more. Recording felt pointless. I never imagined the model disappearing.

That regret became the design requirement. Some information exists only at the moment of generation. Miss it, and it cannot be reconstructed later.

Six fields turned out to be the minimum a provenance ledger needs.

FieldWhy it matters
model_idPrimary signal for deprecation impact. Record the resolved model, never an alias like -latest
prompt / negative_promptThe only input for regeneration. A one-character difference changes the look, so store it verbatim
paramsAspect ratio, image count, safety settings — anything that steers the output
output_sha256Binds ledger rows to files. Survives renames and directory moves
embeddingThe reference vector for drift measurement. The old model's trace, kept after the model is gone
generated_atSeparates drift caused by minor model updates over time

The fifth field is the keystone. After the shutdown you cannot invoke the old model, but the images it produced are still sitting on disk. Embed them with gemini-embedding-2, store the vectors, and you can keep measuring how far any new model's output drifts from the original look — long after the model itself is gone. What disappears is the model, not the evidence of what it made.

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
A provenance ledger schema that captures model ID, prompt, and output hash, plus a backfill script for assets that were never recorded
Measuring old-vs-new model output drift with gemini-embedding-2 image embeddings, using cosine 0.86 as the machine-readable regenerable/frozen boundary
A two-layer pipeline that skips generation for frozen assets and routes only derivative work (resolution variants) through the new model
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Gemini Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $15 for lifetime access
View Membership →

Related Articles

Advanced2026-07-15
A near-miss label won't fix itself on retry — a normalization layer for closed-vocabulary classification
When responseSchema enum returns an out-of-set label, retrying tends to return the same near-miss. From a wallpaper app's 30-category batch, here is the distribution of how labels miss, plus a normalization layer built on an alias table and gemini-embedding-2 nearest-neighbor, with measured results.
Advanced2026-07-10
The Day We Went From 30 Categories to 34 — Reclassifying 1,180 Assets Instead of 8,142
Adding categories to a taxonomy does not require reclassifying everything. Here is how embeddings and confidence margins narrowed a backfill from 8,142 assets to 1,180, with the numbers.
Advanced2026-07-01
Getting Artifacts Out of a Managed Agents Sandbox Safely — Scoped Credentials and Egress Design
Gemini API Managed Agents run in a Google-hosted isolated sandbox. Here is the short-lived, least-privilege credential and egress-boundary design I use to return generated artifacts to my own repository safely.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →