A model running locally keeps inference on the Mac only when cloud features are disabled and no plugin, extension or exposed local endpoint forwards data. Apple Intelligence is more integrated and can use Private Cloud Compute for complex requests; ChatGPT is a separate third-party path. PCC is not fully local inference; Apple documents its own privacy and audit mechanisms for this path.123
Apple Intelligence as a system feature
On the Mac, Apple Intelligence combines system features such as Writing Tools, summaries, Siri improvements, Smart Reply, Shortcuts actions and optional ChatGPT access.1
At the model level, Apple describes a roughly 3B-parameter on-device foundation language model and a larger server model for Private Cloud Compute.1 Newer Apple Intelligence models are multilingual and multimodal, and Apple’s developer framework adds guided generation, constrained tool calling and LoRA adapter fine-tuning.4
For normal users, however, Apple Intelligence remains a curated system feature: you do not freely choose arbitrary open-weight models like you do in Ollama or LM Studio.567
System requirements for Apple Intelligence on Mac according to Apple:8
- Mac with Apple silicon
- macOS Sequoia 15.1 as baseline; EU residents need iOS 18.4+ / iPadOS 18.4+ / macOS 15.1+ for most Apple Intelligence features
- About 7 GB of storage for on-device models
- Device and Siri language must be set to a supported language that matches
- Feature availability varies by language, platform and region
As of August 15, 2026, Apple lists Apple Intelligence availability in these languages on iOS 26.1, iPadOS 26.1 and macOS 26.1: English, Danish, Dutch, French, German, Italian, Norwegian, Portuguese, Spanish, Swedish, Turkish, Chinese (Simplified and Traditional), Japanese, Korean and Vietnamese. Individual features can still vary by device, region, language and app. Apple also says more personal Siri features are still in development and will arrive in future software updates.8
Three Data Paths: On-Device, PCC, ChatGPT
Apple Intelligence has three different privacy paths:
1. On-device processing: Simple or supported tasks can run on your Mac. This path does not require server inference; the request can remain on the device.
2. Private Cloud Compute: For more complex requests, Apple can send only the relevant request data to Apple silicon servers. Apple says the data is used only for the request, not stored, not made available to Apple staff, and deleted after processing.2 PCC also uses attestation, OHTTP relay and target diffusion.39
3. ChatGPT integration: Some Apple Intelligence features can ask ChatGPT. This is separate from PCC. Apple says that, without an account, no Apple Account data is sent to OpenAI, the IP address is obscured from ChatGPT, and OpenAI must not store the request or use it to train its models. With a connected ChatGPT account, OpenAI’s account settings apply; Apple notes that requests, attachments and session history may then be logged and used to train or improve models under those settings.1011
The diagram separates on-device processing, PCC, ChatGPT and local models by data path.
What Private Cloud Compute Protects — and What It Doesn’t
PCC processes requests in the cloud, but uses its own architecture rather than a standard cloud API. PCC uses several technical controls described in Apple’s security documentation:3912
- Attestation: Every PCC request is verified against a trusted, verified server build.
- Public Transparency Log: PCC transparency logs allow external reviewers to monitor the infrastructure.
- OHTTP Relay: Your IP address is not forwarded to PCC nodes.
- Target Diffusion: Requests are distributed across multiple nodes to obscure patterns.
- Published production images: Apple publishes parts of the PCC infrastructure as open source.
- Private Cloud Compute Virtual Research Environment: Researchers can independently audit parts of the PCC infrastructure.
- Security Bounty: Apple rewards PCC security research through a public bug bounty program.
Since 2026, Apple has extended PCC beyond its own infrastructure: according to Apple’s announcement, new Apple Intelligence workloads run on NVIDIA GPUs in Google Cloud, secured by NVIDIA Confidential Computing, Intel TDX, and Google’s Titan chip. Apple states the control mechanisms above apply to this expansion unchanged.13
What PCC still cannot do: An individual user cannot fully inspect a specific request in real time. The architecture provides published audit paths, but it still requires trust in Apple.
Local AI and its data paths
Local AI means the model weights are on your Mac and inference runs on your CPU/GPU or the local Apple Silicon stack instead of a third-party inference API. With tools such as Ollama, LM Studio, llama.cpp and MLX, this can be fully offline after model download.567
Running locally does not by itself create a complete privacy boundary. Model search, downloads, cloud-hosted models, web search, plugins, exposed local servers, browser extensions and backups can still create data paths. For sensitive work, use local-only settings, keep the server bound to localhost and avoid exposing your model server to the network.5
Start Ollama:
brew install ollama
ollama pull qwen3:4b
ollama run qwen3:4b
Privacy Matrix for Mac Users
| Criterion | Apple Intelligence on-device | Apple PCC | ChatGPT integration | Local AI local-only |
|---|---|---|---|---|
| Data leaves Mac? | No | Yes, relevant request data | Yes, to OpenAI | No, after model download |
| Who runs inference? | Your Mac | Apple silicon servers | OpenAI | Your Mac |
| Offline? | Partly, feature-dependent | No | No | Yes, if model is downloaded |
| Model choice | Apple curated | Apple server model | OpenAI model, account-dependent | Broad (Ollama/LM Studio/MLX) |
| Verifiability | OS/device trust | Attestation, logs and VRE per Apple documentation | Depends on OpenAI/Apple terms | Depends on local setup |
| Sensitive documents | Good for light personal workflows | Cloud processing; see Apple’s privacy documentation | Only if acceptable under your policy | Suitable when truly local and the device is secured |
| Costs | Included with compatible device/software | Included with Apple Intelligence where available | May depend on account/plan/features | No per-token fee, but hardware/SSD/electricity/time |
Apple Intelligence: Where system integration matters
Apple Intelligence is a fit when system integration matters more than model choice:
- Writing Tools directly inside Mail, Notes, Pages and many text fields
- Siri and Shortcuts integration, with the note that not all more personal Siri features have fully shipped yet
- Smart Reply, summaries and notification features
- No model downloads, no quantization decisions, no terminal
- Apple documentation on PCC controls and security research
- Apple Intelligence Report for PCC requests in Privacy & Security settings
Local AI: Where control and offline use matter
Local AI is a fit when model control and offline use matter more than system convenience:567
- Private documents that should not leave the Mac
- Proprietary code, unpublished research, client files or internal notes
- Offline work on planes, trains or restricted networks
- Open-weight model choice: Qwen, Gemma, Llama, Mistral, DeepSeek, Phi and many others
- Local RAG and document chats
- Reproducible prompts and fixed model versions
- Experiments with quantization, context length, system prompts and fine-tuning
See also: Set Up Ollama on Mac mini M4, LM Studio vs. Ollama and Unified Memory Explained.
Checklist: Make Local AI Actually Private
- Download the model, then test it offline.
- In Ollama, disable cloud features for sensitive work:
OLLAMA_NO_CLOUD=1or setdisable_ollama_cloudin~/.ollama/server.json. - Keep Ollama/LM Studio bound to localhost unless you intentionally need LAN access.
- Do not expose port 11434 or LM Studio’s local server to the internet.
- Avoid browser extensions or editor plugins that forward prompts to cloud services.
- Use reputable model sources and avoid random unsigned model files.
- Remember that local chat histories, logs, RAG documents and backups can still contain sensitive data.
- Keep FileVault on and lock the device.
More info: Privacy Policy.
Recommendation
Choose based on data sensitivity and convenience.
Use Apple Intelligence for everyday convenience: rewriting a casual email, summarizing notifications, quick Siri actions, calendar and Shortcuts workflows and system-level help.
Use local AI for sensitive documents such as client data, unpublished code, medical notes, legal drafts, research ideas, business plans or private journals. Local tools can still transmit data if cloud features are enabled or the server is exposed.
Use the ChatGPT integration only when the convenience is worth the third-party data path. Without an account, Apple documents restrictions on storage and model training; it is still not local inference.10
The decision depends on data path, offline requirements and model control.
FAQ
Is Private Cloud Compute just a normal cloud API?
No. PCC is designed for stateless processing, attestation and external inspectability. But it is still cloud processing, not fully offline inference.
Is local AI always more private?
Only if it is configured locally. A downloaded model running offline in LM Studio, MLX or Ollama avoids server inference for that workload. Cloud models, web search, plugins, exposed local servers and backups can still create data paths.
Should I turn off ChatGPT integration for sensitive data?
For highly sensitive data, yes. ChatGPT integration is separate from PCC and sends data to OpenAI. If you connect a ChatGPT account, your account data settings apply.
Which is better on a Mac: Apple Intelligence or Ollama?
Apple Intelligence is better for convenience and system integration. Ollama or LM Studio is better for model choice, offline work and sensitive files that should never leave your Mac.
Sources
Footnotes
-
https://support.apple.com/guide/mac-help/apple-intelligence-and-privacy-mchlfc0d4779/mac ↩ ↩2 ↩3
-
https://www.apple.com/legal/privacy/data/en/intelligence-engine ↩ ↩2
-
https://security.apple.com/blog/private-cloud-compute ↩ ↩2 ↩3
-
https://machinelearning.apple.com/research/apple-foundation-models-tech-report-2025 ↩
-
https://github.com/ml-explore/mlx-examples/tree/main/lora ↩ ↩2 ↩3
-
https://www.apple.com/legal/privacy/data/en/chatgpt-extension ↩ ↩2
-
https://help.openai.com/en/articles/9737562-how-your-data-is-handled-when-you-use-chatgpt-through-apples-integrations ↩
-
https://security.apple.com/documentation/private-cloud-compute ↩
Frequently Asked Questions
Do my Apple Intelligence data really stay local?
Apple Intelligence processes requests on device when possible. Complex requests can use Private Cloud Compute. The optional ChatGPT integration is a separate path to OpenAI. The Apple Intelligence Report shows which requests your Mac sent to Private Cloud Compute; it is not a complete log of every on-device or ChatGPT request.
How is Apple Intelligence different from Ollama on the Mac?
Apple Intelligence is tightly integrated into macOS/iOS (Siri, Writing Tools, image generation), but you cannot customize the model, configuration, or processing. Ollama gives you full control: model choice, quantization, local API and your own firewall. If you want privacy plus control, Ollama, LM Studio, or MLX is more flexible.
What is Apple Private Cloud Compute (PCC)?
PCC is Apple's custom hardware for certain Apple Intelligence requests. The system is designed for attested, stateless processing and external inspectability. Apple does not publish a general percentage for how often PCC is used.
Are Apple Intelligence and ChatGPT on Mac the same thing?
No. Apple Intelligence uses on-device processing and PCC for certain requests. ChatGPT in Siri and Writing Tools is a separate optional integration. Processing and retention depend partly on whether you are signed in to ChatGPT and on your account settings.
When is Ollama more private than Apple Intelligence?
A fully offline local model avoids PCC and third-party APIs. Model weights can be stored locally, but license and transparency depend on the selected model. Cloud models, web search, plugins or an exposed local server can still create data paths.
Do I need an M-chip for Apple Intelligence?
Yes, Apple Intelligence only runs on Macs with Apple Silicon and on newer iPhones and iPads, according to Apple. The on-device model therefore requires a compatible Apple Silicon device. On Intel Macs, Apple Intelligence is not available; the path there leads to local models such as Ollama or LM Studio.