Since² January 2026 there’s³ the toggle Settings > System > On-device AI in Chrome Canary, yet to be released in Stable channel. Until then use the policy setting GenAILocalFoundationalModelSettings⁴ to disable and delete the local model with:
# 1st variant targets current user and keeps settings mechanism intact
# 2nd variant as admin targets whole machine and greys out corresponding settings entry
# Windows
reg.exe add HKCU\SOFTWARE\Policies\Google\Chrome\Recommended /v GenAILocalFoundationalModelSettings /t REG_DWORD /d 1 /f
reg.exe add HKLM\SOFTWARE\Policies\Google\Chrome /v GenAILocalFoundationalModelSettings /t REG_DWORD /d 1 /f
# macOS
defaults write ~/Library/Preferences/com.google.Chrome.plist GenAILocalFoundationalModelSettings -int 1
defaults write "/Library/Managed Preferences/com.google.Chrome.plist" GenAILocalFoundationalModelSettings -int 1
# Linux
echo '{"GenAILocalFoundationalModelSettings":1}' > /etc/opt/chrome/policies/recommended/disable-local-llm.json
echo '{"GenAILocalFoundationalModelSettings":1}' > /etc/opt/chrome/policies/managed/disable-local-llm.json
Check effective policies with chrome://policy/ in address bar.






Leave a comment