Address
33-17, Q Sentral.
2A, Jalan Stesen Sentral 2, Kuala Lumpur Sentral,
50470 Federal Territory of Kuala Lumpur
Contact
+603-2701-3606
info@linkdood.com
Address
33-17, Q Sentral.
2A, Jalan Stesen Sentral 2, Kuala Lumpur Sentral,
50470 Federal Territory of Kuala Lumpur
Contact
+603-2701-3606
info@linkdood.com

Apple’s latest technical report reveals a leap forward in how on-device artificial intelligence (AI) is being designed—balancing power, privacy, and performance like never before.

Apple’s Foundation Models are advanced language and multimodal A.I. systems designed to run directly on iPhones, iPads, Macs, and Vision Pro, enabling smart features without sending data to the cloud. They include:
Apple’s on-device models now rival small to medium cloud LLMs, delivering fast, private, and offline intelligence. Plus, apps using Apple’s AI are free from inference charges.
Fresh from WWDC 2025, Apple’s new Foundation Models framework allows developers to embed on-device AI using just a few lines of Swift. It supports:
A typical implementation:
swiftCopyEditimport FoundationModels
#Playground {
let session = LanguageModelSession()
let response = try await session.respond(to: "Translate 'Hello' into French.")
print(response.content)
}
Guided generation ensures predictable, type-safe output.
Light queries, like basic prompts, are answered by on-device models. Heavy-lifting tasks—complex reasoning or coding—are handled by cloud models, with all data encrypted end-to-end.
Q: Can developers use Apple’s Foundation Model for free?
Yes—on-device inference and AI features built via the framework come with no extra cost, unlike many cloud AI services.
Q: Is any user data sent to Apple?
No. Apple states it doesn’t collect personal data for training LLMs. Sensitive queries stay private, and only encrypted Private Cloud Compute handles heavier tasks.
Q: What about AI safety and hallucinations?
Apple hasn’t detailed mitigation strategies in the report. Early security audits show promise, but thorough testing is still underway.
Q: How does performance compare to GPT‑4?
On-device models are comparable to small cloud LLMs. Their cloud-backed counterparts match GPT‑3 and approximate GPT‑4 performance—which is notable for a privacy-first architecture.
Q: When will developers get it?
Beta access began in June after WWDC. A full release aligns with the September launch of iOS 26, macOS 15, iPadOS 18, and VisionOS updates.
Apple’s 2025 Foundation Models update marks a leap toward smart, private, and efficient AI everywhere—right in your pocket. Developers can now build intelligent apps that respect user privacy and work offline, bridging the gap between convenience and control. As AI evolves, Apple’s emphasis on ethical, on-device intelligence may define a new era of trustworthy computing.

Sources Machine Learning Research