If you use Google Chrome 117+ on macOS 13 Ventura or newer, a 4 GB AI model tends to appear on your Mac without asking. The file is Gemini Nano, Google’s on-device LM, and it shows up without a notification or consent, which raises concerns among users.
In this post, I’ll explain how to check whether this affected your Mac, how to remove the model files, and why deleting them may not be enough to keep them gone.
| What file | What it is | How to find it | How to remove it |
|---|---|---|---|
| OptGuideOnDeviceModel/ | Main Gemini Nano model folder (4.27 GB+) containing weights.bin | Finder (Cmd+Shift+G) ~/Library/Application Support/Google/Chrome/OptGuideOnDeviceModel |
Delete the folder in Finder or run in Terminal rm -rf ~/Library/Application Support/Google/Chrome/OptGuideOnDeviceModel/ |
| Chrome AI features | Settings that trigger redownloads | Open chrome://flags/, plus Settings → System → On-device AI | Disable related flags and turn On-device AI off |
| All Chrome AI data + app | Chrome, Gemini Nano, caches, and support files | Finder (Cmd+Shift+G) ~/Library/Application Support/Google/Chrome/ |
Remove all of Chrome files with App Cleaner & Uninstaller |
What AI data Chrome downloads and why
Chrome 117 introduced Gemini Nano, Google’s compact language model, running locally on your device. Starting with Chrome 147, two flags that trigger the download are on by default:
#optimization-guide-on-device-modelCopy
#prompt-api-for-gemini-nanoCopy
If Chrome has an internet connection, more than 2 GB of free space, and launches after updating to a compatible version, the model can download automatically without any user action. It doesn’t matter whether you used the said AI features or not.
On macOS, Gemini Nano currently works only on Apple Silicon Macs (M1-M5) running macOS 13 Ventura or newer. Intel-based Macs are no longer supported and do not receive the local AI model download.
What Gemini Nano is used for
Gemini Nano comes with a few Chrome AI features:
- Writing assistance
- Webpage summarization
- Smart paste
- Tab group suggestions
- On-device scam detection
- Prompt API for extension developers
On my MacBook Pro M1 (Tahoe 26.4.1) with Chrome 148, the file structure was like that:
~/Library/Application Support/Google/Chrome/OptGuideOnDeviceModel/
└── 2025.8.11.1/ ← model version
├── _metadata/
├── manifest.json
├── on_device_model_execution_config.pb
└── weights.bin ← main weights file measured 4.27 GB
Two smaller companion models often appear in the same directory:
- – a separate content classifier
OptGuideOnDeviceClassifierModel/Copy
- – address-bar suggestions
OnDeviceHeadSuggestModel/Copy
- – metadata storage
optimization_g…e_model_store/Copy
Why Google downloads Gemini Nano automatically
Google’s position: local processing keeps data on your device instead of sending it to the cloud, AI features work offline, and responses arrive faster without a network round-trip.
The practical drawbacks users report:
- Takes 1.5-4+ GB without consent or notification
- No built-in cancel option or progress indicator
- Redownloads after deletion, even with AI flags disabled
- Chrome sometimes keeps multiple model versions, reaching up to 12 GB total (Chrome does not always remove the previous model versions)
How to check if Gemini Nano is on your Mac
I’ll show you three ways to verify whether Chrome has already downloaded the model.
Method 1: Finder
- Open Finder.
- Press Command+Shift+G.
- Paste
~/Library/Application Support/Google/Chrome/Copy
- Press Return.
- Look for the folder
OptGuideOnDeviceModelCopy
- Right-click it → Get Info → check the size.
Note:
Method 2: Terminal
- Open Terminal.
- Check if the folder exists by running:
ls ~/Library/Application\ Support/Google/Chrome/OptGuideOnDeviceModel/Copy
If the command returns a version folder name like, the model is present.2025.8.11.1Copy
- Check its size with this command:
du -sh ~/Library/Application\ Support/Google/Chrome/OptGuideOnDeviceModel/Copy
- Check all AI-related Chrome folders at once by entering the following command:
du -sh ~/Library/Application\ Support/Google/Chrome/Opt*Copy
Method 3: Chrome
- Open Chrome.
- Go to .
chrome://components/Copy
- Look for Optimization Guide On Device Model.
- It shows the installed version and download status.
Note:
chrome://components/
Copy
How to remove Gemini Nano from Mac
Removing the model files frees 4+ GB of disk space. Chrome will redownload the model on the next launch unless you also disable the AI flags. And even then, this workaround isn’t a guarantee of holding across updates.
Remove Chrome AI files manually in Finder
- Quit Chrome completely:
- Press Command+Q in the app, or
- Open Activity Monitor → search for → select all related processes → click X to stop them.
ChromeCopy
- Locate Gemini Nano folder:
- Open Finder.
- Press Command+Shift+G.
- Paste
~/Library/Application Support/Google/Chrome/Copy
- Press Return.
- Locate → select it → move it to Trash with Command+Delete.
OptGuideOnDeviceModelCopy
- Also, remove these folders, if any:
OptGuideOnDeviceClassifierModel/Copy
OnDeviceHeadSuggestModel/Copy
- Empty the Trash.
- Disable AI features in Chrome.
- Start with disabling the flags:
- Open Chrome.
- Go to
chrome://flags/Copy
- Set each of these to Disabled:
- → Enables optimization guide on device
#optimization-guide-on-device-modelCopy
- → Prompt API for Gemini Nano
#prompt-api-for-gemini-nanoCopy
- → Summarizer API for Gemini Nano
#summarizer-api-for-gemini-nanoCopy
- → Writer API for Gemini Nano
#writer-api-for-gemini-nanoCopy
- → Rewriter API for Gemini Nano
#rewriter-api-for-gemini-nanoCopy
- Click Relaunch.
- Set the On-device AI toggle to off:
- Open Chrome.
- Go to Settings.
- Open the System tab in the left panel.
- Disable On-device AI.
- Start with disabling the flags:
Note:
GenAILocalFoundationalModelSettings
Copy
Remove Gemini Nano using Terminal
If you are a tech-savvy user, this method is for you. It works on all macOS versions.
Warning
ls
Copy
- Open Terminal.
- Quit Chrome first:
killall “Google Chrome”Copy
- Verify the model folder is there before deleting:
ls ~/Library/Application\ Support/Google/Chrome/OptGuideOnDeviceModel/Copy
- Delete the Gemini Nano folder:
rm -rf ~/Library/Application\ Support/Google/Chrome/OptGuideOnDeviceModel/Copy
- Confirm deletion (empty output means success):
ls ~/Library/Application\ Support/Google/Chrome/ | grep OptGuideCopy
- After deleting, turn off the AI features in Chrome as instructed above.
Remove Gemini Nano with Chrome altogether using the uninstaller
If you want to uninstall Gemini Nano with Google Chrome, App Cleaner & Uninstaller shows Chrome’s complete storage footprint, 9.88 GB on the test machine, a significant share of which comes from AI components. This utility helps you delete that completely in a couple of clicks:
- Download → run App Cleaner & Uninstaller.
- Find Google Chrome in the app list → click it.
Optional
Switch to the Expert mode → check out the right panel, which shows all associated files and folders with sizes. Theentry is where AI components live, including~/Library/Application Support/Google/Chrome/Copy
.OptGuideOnDeviceModeCopy
- Click Uninstall or Remove (in Expert Mode) → confirm.
Final reveal
OptGuideOnDeviceModel
Copy
chrome://flags/
Copy



