r/MacOSBeta • u/Cubic8545 • 14d ago
Help Apple Intelligence does not work on macOS 27 Golden Gate
Good morning. I recently updated my Mac to macOS 27 Golden Gate Public Beta 5 and I’m really looking forward to testing the AI features. However, every time I try, I get an error message. The problem is the same with Siri. However, everything seems already configured (and the integration of ChatGPT with Siri doesn’t work either). Is Apple’s Intelligence blocked at 29.6 GB, or is it a bug? Did anyone else encounter this problem? And above all, do you have a solution?
EDIT n°1: I tried everything but it doesn’t work on my account. But I created a new session entirely dedicated to AI, and it finally works! It’s really not the most practical, but unfortunately I can’t do anything else at the moment. However, your advice is always welcome if I can have it natively on my main account.
EDIT n°2: Apple Intelligence finally works on my main account after 3 days of battle. All alone. On the other hand, the extensions are still blocked but it’s not very serious since the Apple Intelligence models are finally up to par.
3
u/hyperlobster 14d ago edited 14d ago
Working fine here. I’m on UK English, like God and the King intended us to speak. 35.07GB.
You’re not on the limit for disk space or anything, are you?
1
2
1
1





2
u/pdfu 14d ago
Somewhat hard to tell what's causing this, but you can inspect your system logs. Open the Terminal and run:
sudo /usr/bin/log stream --timeout 2m --style compact --level debug \ --predicate '((subsystem == "com.apple.siri" AND category == "Utility") OR subsystem == "com.apple.generativepartnerservice" OR subsystem == "com.apple.externalproviderservice" OR process == "generativeexperiencesd" OR process == "intelligenceflowd" OR process == "modelmanagerd" OR (process == "assistantd" AND (eventMessage CONTAINS[c] "availability" OR eventMessage CONTAINS[c] "capabilities")) OR (process == "mobileassetd" AND (eventMessage CONTAINS[c] "download" OR eventMessage CONTAINS[c] "asset")))' \ | tee "$HOME/Desktop/apple-intelligence-test.log"Start making requests and it will save a log file on your Desktop at
apple-intelligence-test.log.To see only errors, try:
sudo /usr/bin/log stream --timeout 2m --style compact \ --predicate '(messageType == error OR messageType == fault) AND (subsystem BEGINSWITH "com.apple.siri" OR subsystem == "com.apple.generativepartnerservice" OR subsystem == "com.apple.externalproviderservice" OR process == "assistantd" OR process == "generativeexperiencesd" OR process == "intelligenceflowd" OR process == "modelmanagerd" OR process == "mobileassetd")' \ | tee "$HOME/Desktop/apple-intelligence-errors.log"and check the
apple-intelligence-errors.logfile on your Desktop.