June 5, 2026

Chrome quietly downloads AI files: How to find & delete AI data on Mac

Sergio Tereshchenko
Written by
A Mac specialist with a QA engineering background, focused on troubleshooting and how-to guides.

Sergio Tereshchenko

Vladimir Nuzhdin
Approved by
Reviewed by a Mac developer at Nektony and Apple Certified Support Professional with hands-on experience building macOS apps.

Vladimir Nuzhdin

Share

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

Remove AI and regular apps easily

Apps no longer come alone. AI models, caches, support files, and hidden data can stay on your Mac long after the app itself is gone. Instead of digging through Library folders manually, use App Cleaner & Uninstaller, which helps clear both the app and its related files, visible and hidden, completely without the file hunt.

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-model

    Copy

  • #prompt-api-for-gemini-nano

    Copy

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:

  • OptGuideOnDeviceClassifierModel/

    Copy

    – a separate content classifier
  • OnDeviceHeadSuggestModel/

    Copy

    – address-bar suggestions
  • optimization_g…e_model_store/

    Copy

    – metadata storage

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

  1. Open Finder.
  2. Press Command+Shift+G.
  3. Paste
    ~/Library/Application Support/Google/Chrome/

    Copy

  4. Press Return. Finder Go to Folder dialog with Chrome application support path
  5. Look for the folder
    OptGuideOnDeviceModel

    Copy

  6. Right-click it → Get Info → check the size.

Note:

The Library folder is hidden by default. Command+Shift+G bypasses that. You can also reveal hidden folders with Command+Shift+. while in Finder.

Method 2: Terminal

  1. Open Terminal.
  2. Check if the folder exists by running:
    ls ~/Library/Application\ Support/Google/Chrome/OptGuideOnDeviceModel/

    Copy

    Terminal showing ls command for Chrome AI model folder If the command returns a version folder name like
    2025.8.11.1

    Copy

    , the model is present.
  3. Check its size with this command:
    du -sh ~/Library/Application\ Support/Google/Chrome/OptGuideOnDeviceModel/

    Copy

  4. 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

  1. Open Chrome.
  2. Go to
    chrome://components/

    Copy

    .
  3. Look for Optimization Guide On Device Model.
    • It shows the installed version and download status.

Note:

On some configurations, this entry doesn’t appear in
chrome://components/

Copy

even when the folder exists on disk, which is a known Chrome bug. Try Finder or Terminal instead if you don’t see it.

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

  1. Quit Chrome completely:
    • Press Command+Q in the app, or
    • Open Activity Monitor → search for
      Chrome

      Copy

      → select all related processes → click X to stop them.
    Activity Monitor showing Chrome processes selected
  2. Locate Gemini Nano folder:
    • Open Finder.
    • Press Command+Shift+G.
    • Paste
      ~/Library/Application Support/Google/Chrome/

      Copy

    • Press Return.
    • Locate
      OptGuideOnDeviceModel

      Copy

      select it → move it to Trash with Command+Delete.
    Finder showing OptGuideOnDeviceModel folder in Chrome
    • Also, remove these folders, if any:
      • OptGuideOnDeviceClassifierModel/

        Copy

      • OnDeviceHeadSuggestModel/

        Copy

  3. Empty the Trash.
  4. Disable AI features in Chrome.

    1. Start with disabling the flags:
      • Open Chrome.
      • Go to
        chrome://flags/

        Copy

      • Set each of these to Disabled: Chrome showing Gemini Nano AI flags set to Disabled

          • #optimization-guide-on-device-model

            Copy

            → Enables optimization guide on device
          • #prompt-api-for-gemini-nano

            Copy

            → Prompt API for Gemini Nano
          • #summarizer-api-for-gemini-nano

            Copy

            → Summarizer API for Gemini Nano
          • #writer-api-for-gemini-nano

            Copy

            → Writer API for Gemini Nano
          • #rewriter-api-for-gemini-nano

            Copy

            → Rewriter API for Gemini Nano
          • Click Relaunch.

    2. 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.

Note:

Disabling these flags did not prevent Chrome from redownloading the model after the folder was deleted. Flags also reset after major Chrome updates. The only reliable method is the
GenAILocalFoundationalModelSettings

Copy

enterprise policy, a macOS plist file that blocks the download at a system level.

Remove Gemini Nano using Terminal

If you are a tech-savvy user, this method is for you. It works on all macOS versions.

Warning

Removing files in Terminal is permanent. Double-check the path with
ls

Copy

before running the delete command; a typo can delete Chrome settings or something else.

  1. Open Terminal.
  2. Quit Chrome first:
    killall “Google Chrome”

    Copy

  3. Verify the model folder is there before deleting:
    ls ~/Library/Application\ Support/Google/Chrome/OptGuideOnDeviceModel/

    Copy

  4. Delete the Gemini Nano folder:
    rm -rf ~/Library/Application\ Support/Google/Chrome/OptGuideOnDeviceModel/

    Copy

  5. Confirm deletion (empty output means success):
    ls ~/Library/Application\ Support/Google/Chrome/ | grep OptGuide

    Copy

  6. 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:

  1. Downloadrun App Cleaner & Uninstaller.
  2. Find Google Chrome in the app list → click it. App Cleaner & Uninstaller with Google Chrome selected in list

    Optional

    Switch to the Expert mode → check out the right panel, which shows all associated files and folders with sizes. The
    ~/Library/Application Support/Google/Chrome/

    Copy

    entry is where AI components live, including
    OptGuideOnDeviceMode

    Copy

    .

    App Cleaner & Uninstaller showing Chrome support files and AI component sizes

  3. Click Uninstall or Remove (in Expert Mode) → confirm.

Chrome isn’t the only browser storing hidden AI data

Chrome handles local AI models differently from its other browsers. Here’s how four major browsers compare on Mac to that end.

Browser AI model Download behavior How to disable
Chrome Gemini Nano (Google) Automatic, no consent, redownloads after deletion Disable flags in chrome://flags (but model may return). Enforce GenAILocalFoundationalModelSettings enterprise policy to block downloads permanently.
Edge Chromium-based infrastructure
(same as in Chrome)
Infrastructure present; not aggressively downloaded by default GenAILocalFoundationalModelSettings (supported from Edge 132+). Setting it to 1 (Disallowed) blocks future downloads and removes existing local AI models.
Opera Aria (cloud) Cloud only, no local model weights on disk Settings → Basic → Block Aria to disable Opera’s AI features.
Brave Leo AI (cloud by default) Leo is off unless enabled. Local only with explicit user opt-in Settings → Appearance → Toolbar → Toggle off Show Leo AI button

Chrome is the only browser among the four that downloads a multi-gigabyte local model without explicit user consent or a reliable standard-setting opt-out.

Microsoft Edge uses the same Chromium architecture as Chrome, but provides more transparent policy controls, including an option to block and remove AI models entirely.

Opera is the lightest option: its AI runs entirely in the cloud, so it does not consume gigabytes of local storage.

Brave is the most user-respectful browser. Local models are never downloaded unless the user explicitly chooses to connect one through Ollama or another compatible server.

How much space can hidden browser data take?

Browser Data type Typical size macOS path
Chrome Gemini Nano (weights.bin) 4.27 GB ~/Library/Application Support/Google/Chrome/OptGuideOnDeviceModel/
Chrome Total Chrome application data ~9.88 GB ~/Library/Application Support/Google/Chrome/
Chrome Additional AI components ~100-500 MB OptGuideOnDeviceClassifierModel/, OnDeviceHeadSuggestModel/
Edge AI component (if downloaded) Up to ~4 GB ~/Library/Application Support/Microsoft Edge/Default/OptGuideOnDeviceModel/
Opera All data, no local LLM 200 MB-1 GB ~/Library/Application Support/com.operasoftware.Opera/
Brave All data, no local LLM 200 MB-1 GB ~/Library/Application Support/BraveSoftware/Brave-Browser/
Chrome with Gemini Nano is the largest consumer of hidden storage among modern browsers. When Chrome stores multiple model versions without cleaning up older ones, the
OptGuideOnDeviceModel

Copy

folder alone can reach 12 GB.

Check in Terminal how much space browsers use

  1. Open Terminal.
  2. Run the following commands at once:
    du -sh \
    ~/Library/Application\ Support/Google/Chrome/ \
    ~/Library/Application\ Support/Microsoft\ Edge/ \
    ~/Library/Application\ Support/BraveSoftware/ \
    ~/Library/Application\ Support/com.operasoftware.Opera/

Final reveal

So, Chrome does consume gigabytes of disk space by downloading the AI Gemini Nano model silently. And if you’re on a Mac (running Ventura+ and using Chrome 117 or later), the
OptGuideOnDeviceModel

Copy

folder is almost certainly there.
Deleting it is possible via Finder or Terminal. The catch: Chrome redownloads it unless you disable the AI flags in
chrome://flags/

Copy

and the on-device AI feature, provided that workaround doesn’t hold across major Chrome updates. The most reliable option is the GenAILocalFoundationalModelSettings policy.
If this becomes too frustrating, you can also remove all Chrome-related files, including AI files and the browser itself, at once in a few clicks using App Cleaner & Uninstaller.

Frequently asked questions

How do I turn off AI in Chrome?

  1. Open Chrome.
  2. Go to
    chrome://settings/

    Copy

    .
  3. Open the System tab in the left panel.
  4. Toggle off On-device AI.
  5. Then open
    chrome://flags/

    Copy

    .
  6. Disable the flags:
    • #optimization-guide-on-device-model and #prompt-api-for-gemini-nano
  7. Click Relaunch.

Note: Disabling the flags did not prevent the model from redownloading after the folder was deleted.

What is the OptGuideOnDeviceModel folder in Chrome?

It's Chrome's local storage for the Optimization Guide On Device Model component, the on-device copy of Gemini Nano. The folder is created automatically in Chrome 117 or later on Apple Silicon Macs running macOS 13 or later. It contains a versioned subfolder with weights.bin (4+ GB) and model metadata files.

What is weights.bin in Chrome on Mac?

weights.bin is the neural network parameter file for Gemini Nano. It's safe to delete, but Chrome will redownload it on the next launch if AI flags are still enabled. The file's location is: ~/Library/Application Support/Google/Chrome/OptGuideOnDeviceModel/<version>/weights.bin

Does disabling Chrome flags stop the model from downloading?

Not reliably. On a test MacBook Pro M1 (macOS Tahoe 26.4.1, Chrome 148), disabling #optimization-guide-on-device-model and #prompt-api-for-gemini-nano didn't stop Chrome from redownloading the model after folder deletion. Flags also reset after major Chrome updates, so a working workaround may stop working after an upgrade.

You can also try disabling the On-device AI feature by reaching it as follows:

Settings → System → On-device AI.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top