4/6/2026 at 2:31:16 AM
There's also the Prompt API, currently in Origin Trial, which supports this api surface for sites:https://developer.chrome.com/docs/ai/prompt-api
I just checked the stats:
Model Name: v3Nano
Version: 2025.06.30.1229
Backend Type: GPU (highest quality)
Folder size: 4,072.13 MiB
Different use case but a similar approach.I expect that at some point this will become a native web feature, but not anytime soon, since the model download is many multiples the size of the browser itself. Maybe at some point these APIs could use LLMs built into the OS, like we do for graphics drivers.
by avaer
4/6/2026 at 6:41:58 AM
That’s exactly where we’re headed. Architecturally it makes zero sense to spin up an LLM in every app's userspace. Since we have dedicated NPUs and GPUs now, we need a unified system-level orchestrator to balance inference queues across different programs - exactly how the OS handles access to the NIC or the audio stack. The browser should just be making an IPC call to the system instead of hauling its own heavy inference engine along for the rideby veunes
4/6/2026 at 11:49:12 AM
FWIW - I did a real world experiment pitting the built in Gemini Nano vs a free equivalent from OpenRouter (server call) and the free+server side was better in literally every performance metric.That's not to say that the in browser isn't valuable for privacy+offline, just that the standard case currently is pretty rough.
https://sendcheckit.com/blog/ai-powered-subject-line-alterna...
by michaelbuckbee
4/6/2026 at 2:11:19 PM
It's worth mentioning that "Gemini Nano 4" is going to be Gemma 4, and presumably when it becomes the default Nano model, it should improve performance quite a bit.(It's currently available for testing in Android's AICore under a developer preview)
by spijdar
4/6/2026 at 6:08:53 AM
The Summarizer API is already shipped, and any website can use it to quietly trigger a 2 GB download by simply calling Summarizer.create()
(requires user activation)
by sheept
4/6/2026 at 5:25:51 AM
Interesting!by oyebenny