TL;DR: On August 31/September 1, 2026, Google's own X account (@Google) ran a thread showing off what internal teams have been building with Gemini 3.7 Flash — across Google AI Studio, Google Antigravity, and the Gemini App's "Spark" agent. It named four demo categories (real-time website generators, 3D physics simulators, interactive webcam tools, personalized field guides) and spotlighted specific builds: an Omni video hack in Google Sheets, an interactive art gallery called Art Codec, and a Three.js Kerr black hole simulation built in a single shot. This is Google's own highlight reel, not independent testing — treat it that way, and here's what it's actually worth taking from it.
| Question | Short answer |
|---|---|
| What is this, exactly? | Google's official account curating internal employees' demos built with Gemini 3.7 Flash |
| Is it a benchmark or announcement? | No — it's marketing, explicitly framed as "look what people are building" |
| What are the three named demos? | Omni Video in Google Sheets (Antigravity), Art Codec (AI Studio), Kerr Black Hole simulation (Antigravity + Three.js) |
| What's the technical throughline? | Fast multimodal reasoning + code generation good enough to one-shot nontrivial 3D/math scenes |
| Does 3.7 Flash actually have new specs here? | No new specs in this thread — see explainx.ai's separate launch-day pricing/benchmark coverage for the real numbers |
| Should you read this as proof of model quality? | Only as a directional signal, not proof — it's Google showcasing its own employees' work |
What Google's thread actually said
Google's own words, verbatim from the account (@Google): "Teams across Google have been building with (and loving) Gemini 3.7 Flash. We're seeing: real-time website generators, 3D physics simulators, interactive webcam tools, personalized field guides. Take a look at how Googlers are using 3.7 Flash across @GoogleAIStudio, @Antigravity, and @GeminiApp Spark."
That's a corporate highlight reel, and it's worth naming as one plainly. This is Google promoting its own model by curating its own employees' side projects — not a research paper, not a customer case study with named metrics, and not a claim that any external developer achieved the same results. The four categories it names are broad enough to cover almost any creative-coding demo, which is itself a marketing choice: it signals breadth without committing to specifics until the thread gets to named examples.
The three demos Google actually named
Omni Video in Google Sheets — George Kenwright
The thread's first spotlighted build is one explainx.ai already covered in full: George Kenwright (@GeokenAI) used Gemini 3.7 Flash inside Antigravity to get a Gemini Omni-generated video playing inside Google Sheets, then Calendar, then Chat — surfaces none of which have native video playback. That post walks through the mechanism claim-by-claim (what's confirmed vs. inferred) — see the full Omni-in-Sheets breakdown for the detail. Google's own Workspace account reacted to that demo with "now that's thinking outside the cells" — so this showcase thread is partly Google re-amplifying a viral moment it already noticed, not introducing something new.
Art Codec — Soumya R.
Soumya R. (@soumyadesign) built Art Codec, an interactive art gallery using Gemini 3.7 Flash inside Google AI Studio. The mechanic: a viewer clicks or "hot spots" a region of a famous painting, and Gemini explains the specific motif or technique used in that exact area — not a generic caption for the whole piece, but region-grounded art history. That's a genuinely different capability test than the Sheets/black-hole demos: it requires the model to reason jointly over a visual region and matched historical/technical context, then render that as an interactive UI, in one build.
Kerr Black Hole Simulation — Vamsi Batchu
The most technically demanding of the three: Vamsi Batchu (@vamsibatchuk) built a Kerr black hole simulation in Three.js, inside Antigravity, with Gemini 3.7 Flash — in his own words, "worked on a @threejs skill that one shotted this banger of a Kerr Black Hole simulation with Gemini 3.7 flash in @antigravity. it's amazing when physics, art, AI come together."
Worth being precise about why this is harder than it sounds. A Kerr black hole models a rotating black hole — the general-relativistic solution named after Roy Kerr in 1963 — which introduces frame-dragging around the ergosphere and an event horizon shape that depends on spin, unlike the simpler static Schwarzschild solution. Rendering that correctly in real time in a browser means getting the underlying general-relativity math right, translating it into a shader or geometry pipeline Three.js can actually render, and doing it performantly — three distinct failure points that would each normally cost a debugging pass. Batchu's claim is that Gemini 3.7 Flash cleared all three in one generation.
What "one-shot" actually means as a practitioner bar
"One-shot" gets thrown around loosely in AI-coding circles, so it's worth being concrete about what it claims here: no iteration was needed to go from prompt to a working result. For a nontrivial 3D physics renderer, that means the model got the math right, the code compiled and ran, and the visual output matched intent — all on the first pass, with no round-trip to fix a broken shader, a wrong tensor, or a rendering artifact.
That bar matters more for what it implies about model tier than about this specific demo. Historically, one-shotting a physics-heavy 3D scene — the kind of task explainx.ai has tracked across img2threejs's rigged character pipeline and other Three.js one-shot builds — has leaned on a slower, more expensive Pro-tier model, or on several iterative correction passes with a cheaper model. If a Flash-tier model (fast, priced at $0.75/$3.75 per million tokens per Gemini 3.7 Flash's actual launch pricing) is now clearing that bar on the first try, the practical implication is a tier boundary shifting: reach for Flash on creative-coding and prototyping work by default, and reserve Pro-tier spend for tasks that genuinely need longer-horizon reasoning — the kind DeepMind's own benchmark charts show GPT-5.6 Terra and Muse Spark 1.2 still ahead on (long-horizon software engineering and enterprise task quality, respectively — see the full benchmark comparison).
That's an inference from this thread, not a claim the thread itself makes — Google's post shows outcomes, not process, and there's no way to independently verify from a tweet whether "one-shot" meant zero iteration or a lightly-edited final take being presented as clean.
The technical throughline across all three demos
Line up the three named builds and a pattern holds: each one demands fast multimodal reasoning paired with code generation strong enough to handle a nontrivial domain — 3D math, visual-region grounding, or Workspace API orchestration — without multiple correction rounds.
- The Omni-in-Sheets hack needed the model to write working automation across three separate Google Workspace product APIs in one session.
- Art Codec needed the model to jointly reason over an image region and matched art-historical context, then wire that into an interactive front end.
- The Kerr black hole simulation needed correct general-relativity math translated into performant Three.js rendering code.
None of these are the same task, but all three lean on the same underlying capability: a model fast and cheap enough to iterate freely, but capable enough that it often doesn't need to.
Be honest about what this thread is — and isn't
This is Google's own highlight reel, curated by Google, about Google's own model, featuring Google's own employees. It is not:
- An independent benchmark. For actual numbers — DeepSWE V1.1, AutomationBench, Code Arena Elo, FrontierCode 1.1 Main — see explainx.ai's Gemini 3.7 Flash launch coverage and head-to-head comparison against Grok 4.6, Claude Sonnet 5, and GPT-5.6, both sourced from DeepMind's own published eval methodology, not marketing copy.
- Proof that any developer can reproduce these results. Vamsi Batchu mentions working on "a @threejs skill" — a reusable prompt/tooling setup, not a generic one-shot guarantee. The demos may have benefited from Antigravity-specific tooling, internal access, or iteration that the public framing doesn't disclose.
- A claim about cost or token usage. None of the three named demos comes with a disclosed token count or cost figure, the same gap explainx.ai flagged when covering the Omni-in-Sheets demo directly.
What it is: a legitimate directional signal that Gemini 3.7 Flash's coding and multimodal reasoning is strong enough, at Flash-tier speed and price, that Google's own teams are reaching for it on creative-coding side projects rather than defaulting to a Pro-tier model. That's consistent with the independent benchmark picture — 3.7 Flash leads on Code Arena Elo and enterprise automation per DeepMind's own charts — even if this specific thread isn't the evidence for it.
What this means for builders
- Try Flash-tier first on creative/prototyping work. If Google's own internal teams are one-shotting 3D physics scenes on Flash rather than reaching for Pro, that's a reasonable default to test on your own creative-coding backlog before assuming you need a heavier model.
- Don't cite this thread as a benchmark in your own writing or decisions. Cite the DeepMind eval charts, or run your own harness — explainx.ai's token-budget planning guide covers how to set one up.
- Three.js and WebGL remain a strong proving ground for one-shot generation claims — the geometry either renders correctly or it visibly doesn't, which is why it keeps showing up in these demos (see also img2threejs's rigged-character pipeline for another one-shot-adjacent Three.js build).
- Watch for follow-up detail Google didn't disclose — token cost, iteration count, and whether "Spark" specifically (versus AI Studio or Antigravity) played any role in these three demos went unaddressed in the thread.
Related reading
- Update — September 1, 2026: Google also announced Antigravity
/boost— deep-reasoning slash command for Pro/Ultra on hard engineering tasks. Coverage → - Gemini 3.7 Flash Is Official: Confirmed Pricing and Benchmarks
- Gemini 3.7 Flash vs Grok 4.6 vs Sonnet 5 vs GPT-5.6: The Real Numbers
- Gemini 3.6 Flash, 3.5 Flash-Lite, and 3.5 Flash Cyber: What Actually Changed
- Someone Played an AI Video Inside Google Sheets — Here's How
- Google Antigravity Teamwork: Multi-Agent Framework for Long-Horizon Work
- Antigravity CLI: Sandbox, Plugins, and Slash Commands Reference
- img2threejs v1.5.1: One Photo to a Rigged, Animated Three.js Fighter
- Barehands: Give AI Agents Hands With a Webcam
- Official: Google's Gemini 3.7 Flash launch post · Google AI Studio
This post reflects publicly posted information from Google's own X account as of September 1, 2026. It is explicitly framed as coverage of a company marketing thread, not as independent benchmarking — see the linked launch and benchmark posts for verified specs and third-party evaluation data.
