A complete guide to removing Apple Intelligence model files from macOS 26.0.1 (Tahoe) and reclaiming ~8-9 GB of storage space.
com_apple_MobileAsset_UAF_FM_GenerativeModels (text generation models)com_apple_MobileAsset_UAF_FM_Visual (image generation models)For Apple Silicon Macs (M1-M4):
For Intel Macs:
Once in Recovery: From the menu bar, choose Utilities → Terminal
In the Recovery Terminal, run:
csrutil status
csrutil disable
csrutil status
You 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 list
Look 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/Data
Set 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_Visual
Delete the directories:
rm -rf "$ASSETS/com_apple_MobileAsset_UAF_FM_GenerativeModels" "$ASSETS/com_apple_MobileAsset_UAF_FM_Visual"
sync
Verify deletion:
ls -ld "$ASSETS"/com_apple_MobileAsset_UAF_FM_GenerativeModels "$ASSETS"/com_apple_MobileAsset_UAF_FM_Visual
You should see "No such file or directory" errors (which means success!).
⚠️ Critical for security:
csrutil enable
csrutil status
You 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 status
Confirm directories are gone:
sudo ls -ld /System/Library/AssetsV2/com_apple_MobileAsset_UAF_FM_GenerativeModels /System/Library/AssetsV2/com_apple_MobileAsset_UAF_FM_Visual
Check 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:
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:
csrutil enableOn macOS 26 (Tahoe), Apple Intelligence models are stored at:
/System/Library/AssetsV2/com_apple_MobileAsset_UAF_FM_*/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.
2 commits
Hacker News (1)
A complete guide to removing Apple Intelligence model files from macOS 26.0.1 (Tahoe) and reclaiming ~8-9 GB of storage space.
com_apple_MobileAsset_UAF_FM_GenerativeModels (text generation models)com_apple_MobileAsset_UAF_FM_Visual (image generation models)For Apple Silicon Macs (M1-M4):
For Intel Macs:
Once in Recovery: From the menu bar, choose Utilities → Terminal
In the Recovery Terminal, run:
csrutil status
csrutil disable
csrutil status
You 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 list
Look 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/Data
Set 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_Visual
Delete the directories:
rm -rf "$ASSETS/com_apple_MobileAsset_UAF_FM_GenerativeModels" "$ASSETS/com_apple_MobileAsset_UAF_FM_Visual"
sync
Verify deletion:
ls -ld "$ASSETS"/com_apple_MobileAsset_UAF_FM_GenerativeModels "$ASSETS"/com_apple_MobileAsset_UAF_FM_Visual
You should see "No such file or directory" errors (which means success!).
⚠️ Critical for security:
csrutil enable
csrutil status
You 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 status
Confirm directories are gone:
sudo ls -ld /System/Library/AssetsV2/com_apple_MobileAsset_UAF_FM_GenerativeModels /System/Library/AssetsV2/com_apple_MobileAsset_UAF_FM_Visual
Check 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:
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:
csrutil enableOn macOS 26 (Tahoe), Apple Intelligence models are stored at:
/System/Library/AssetsV2/com_apple_MobileAsset_UAF_FM_*/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.
Hacker News (1)
2 commits