A complete guide to removing Apple Intelligence model files from macOS 26.0.1 (Tahoe) and reclaiming ~8-9 GB of storage space.
- This guide involves modifying system files. Back up your data before proceeding.
- System Integrity Protection (SIP) must be temporarily disabled. This reduces system security during the process.
- Only perform these steps if you've already disabled Apple Intelligence in System Settings.
- Future macOS updates may redownload these files if Apple Intelligence is re-enabled.
- ~8.44 GB of storage from Apple Intelligence language models
- Files removed:
com_apple_MobileAsset_UAF_FM_GenerativeModels(text generation models)com_apple_MobileAsset_UAF_FM_Visual(image generation models)
- macOS 26.0.1 (Tahoe) or later
- Administrator access
- Apple Intelligence already disabled in System Settings
- Important data backed up
For Apple Silicon Macs (M1-M4):
- Shut down your Mac completely
- Press and hold the Power button (Touch ID button) until you see "Loading startup options"
- Click Options, then Continue
- Select your macOS volume and authenticate if asked
For Intel Macs:
- Restart your Mac
- Immediately hold Command (⌘) + R until you see the Apple logo
- Authenticate if prompted
Once in Recovery: From the menu bar, choose Utilities → Terminal
In the Recovery Terminal, run:
csrutil status
csrutil disable
csrutil statusYou should see "System Integrity Protection: disabled" after the second command.
Note: We'll re-enable SIP later to restore system security.
First, identify your Data volume:
diskutil apfs listLook for the volume with Role: Data (usually named "Macintosh HD - Data")
Mount it:
diskutil mount "Macintosh HD - Data"Verify it's accessible:
ls -ld /System/Volumes/DataSet up the path and verify targets:
ASSETS="/System/Volumes/Data/System/Library/AssetsV2"
ls -ld "$ASSETS"/com_apple_MobileAsset_UAF_FM_GenerativeModels "$ASSETS"/com_apple_MobileAsset_UAF_FM_Visual
du -sh "$ASSETS"/com_apple_MobileAsset_UAF_FM_GenerativeModels "$ASSETS"/com_apple_MobileAsset_UAF_FM_VisualDelete the directories:
rm -rf "$ASSETS/com_apple_MobileAsset_UAF_FM_GenerativeModels" "$ASSETS/com_apple_MobileAsset_UAF_FM_Visual"
syncVerify deletion:
ls -ld "$ASSETS"/com_apple_MobileAsset_UAF_FM_GenerativeModels "$ASSETS"/com_apple_MobileAsset_UAF_FM_VisualYou should see "No such file or directory" errors (which means success!).
csrutil enable
csrutil statusYou should see "System Integrity Protection: enabled"
From the menu bar: Apple menu () → Restart
Let your Mac boot normally into macOS 26.0.1
After rebooting, open Terminal and verify:
Check SIP status:
csrutil statusConfirm directories are gone:
sudo ls -ld /System/Library/AssetsV2/com_apple_MobileAsset_UAF_FM_GenerativeModels /System/Library/AssetsV2/com_apple_MobileAsset_UAF_FM_VisualCheck storage:
df -h /Or via GUI: System Settings → General → Storage (wait a few minutes for it to recalculate)
Expected Result: ~8.44 GB freed! 🎉
macOS 26 (Tahoe) changed the file structure and increased System Integrity Protection compared to earlier versions. The paths and access methods are different now.
Since Apple Intelligence is disabled, they typically won't return unless:
- You re-enable Apple Intelligence in System Settings
- A future macOS update reinstalls them (you can repeat this process if needed)
- Yes, if you follow the steps carefully and only delete the two specified directories
- No, if you delete other system files or skip re-enabling SIP
No. Only delete the two Apple Intelligence model directories specified in this guide. Other UAF (Unified Asset Framework) files are used by critical system features.
If you:
- Delete the wrong files: Reinstall macOS from Recovery (your data on the Data volume should be preserved)
- Forget to re-enable SIP: Boot back into Recovery and run
csrutil enable
On macOS 26 (Tahoe), Apple Intelligence models are stored at:
- System volume:
/System/Library/AssetsV2/com_apple_MobileAsset_UAF_FM_* - Data volume:
/System/Volumes/Data/System/Library/AssetsV2/com_apple_MobileAsset_UAF_FM_*
The Data volume is where the actual large files reside and must be accessed via Recovery Mode.
System Integrity Protection (SIP) prevents modification of critical system directories, even with sudo. To delete Apple Intelligence models from /System/Library/AssetsV2/, SIP must be temporarily disabled.
Found an issue or have improvements? Feel free to open an issue or submit a pull request!
This guide modifies system files. Proceed at your own risk. Always have a backup before making system-level changes.
If you're uncomfortable with any step, consider waiting for Apple to provide an official method to remove these files in a future update.