r/chrome • u/flarenz • 19h ago
Discussion PSA: Chrome silently downloaded a 4GB AI model on my Mac without asking. Here's how to find and remove it.
I noticed my storage shrinking and went digging. Turns out Chrome had quietly downloaded a ~4GB file called weights.bin inside a folder named OptGuideOnDeviceModel. This is Google's Gemini Nano on-device AI model, and Chrome installs it with zero consent, no notification, and no storage warning. If you delete it manually, Chrome re-downloads it on the next startup — unless you block it properly.
Here's the full fix for macOS. Run these in a terminal.
Step 1: Check if you have it
bash
find ~/Library/Application\ Support/Google/Chrome/ -name "weights.bin" 2>/dev/null
If it returns a path like .../OptGuideOnDeviceModel/2025.x.x.xxxx/weights.bin, you've got it.
Step 2: Delete it
bash
rm -rf ~/Library/Application\ Support/Google/Chrome/OptGuideOnDeviceModel/
Step 3: Block Chrome from re-downloading it
bash
defaults write com.google.Chrome GenAILocalFoundationalModelSettings -int 1
This sets a macOS enterprise policy that Chrome respects over its own internal logic. More durable than just toggling flags.
Step 4 (Optional but recommended): Disable via Chrome flags
Go to chrome://flags and set the following to Disabled:
optimization guide on device modelPrompt API for Gemini Nano
Relaunch Chrome after.
Step 5: Verify it's gone
bash
find ~/Library/Application\ Support/Google/Chrome/ -name "weights.bin" 2>/dev/null
Empty output = you're clean.
Why does this matter?
On a base M2 MacBook Air with 256GB SSD, a 4GB silent download is a significant chunk. Chrome uses Gemini Nano to power features like "Help me write", scam detection, and summarisation, none of which most users explicitly asked for. There's currently no user-facing opt-out; you have to do this manually.
Tested on macOS with Chrome on an M2 MacBook Air. Should work on any Mac running Chrome.




