Introducing AnyLanguageModel: One API for Local and Remote LLMs on Apple Platforms

AnyLanguageModel is a new Swift package that simplifies AI integration for Apple developers by providing a unified API for both local and cloud-based LLMs.
Introducing AnyLanguageModel: One API for Local and Remote LLMs on Apple Platforms
LLMs have become essential tools for building software. But for Apple developers, integrating them remains unnecessarily painful. Developers building AI-powered apps typically take a hybrid approach, adopting some combination of:
- Local models using Core ML or MLX for privacy and offline capability
- Cloud providers like OpenAI or Anthropic for frontier capabilities
- Apple's Foundation Models as a system-level fallback
Each comes with different APIs, different requirements, different integration patterns. It's a lot, and it adds up quickly. When I interviewed developers about building AI-powered apps, friction with model integration came up immediately. One developer put it bluntly:
I thought I'd quickly use the demo for a test and maybe a quick and dirty build but instead wasted so much time. Drove me nuts.
The cost to experiment is high, which discourages developers from discovering that local, open-source models might actually work great for their use case.
Today we're announcing AnyLanguageModel, a Swift package that provides a drop-in replacement for Apple's Foundation Models framework with support for multiple model providers. Our goal is to reduce the friction of working with LLMs on Apple platforms and make it easier to adopt open-source models that run locally.
The core idea is simple: Swap your import statement, keep the same API.
- import FoundationModels
+ import AnyLanguageModel
Here's what that looks like in practice. Start with Apple's built-in model:
let model = SystemLanguageModel.default
let session = LanguageModelSession(model: model)
let response = try await session.respond(to: "Explain quantum computing in one sentence")
print(response.content)
Now try an open-source model running locally via MLX:
let model = MLXLanguageModel(modelId: "mlx-community/Qwen3-4B-4bit")
let session = LanguageModelSession(model: model)
let response = try await session.respond(to: "Explain quantum computing in one sentence")
print(response.content)
AnyLanguageModel supports a range of providers:
- Apple Foundation Models: Native integration with Apple's system model (macOS 15+ / iOS 18+)
- Core ML: Run converted models with Neural Engine acceleration
- MLX: Run quantized models efficiently on Apple Silicon
- llama.cpp: Load GGUF models via the llama.cpp backend
- Ollama: Connect to locally-served models via Ollama's HTTP API
- OpenAI, Anthropic, Google Gemini: Cloud providers for comparison and fallback
- Hugging Face Inference Providers: Hundreds of cloud models powered by world-class inference providers.
The focus is on local models that you can download from the Hugging Face Hub. Cloud providers are included to lower the barrier to getting started and to provide a migration path. Make it work, then make it right.
When designing AnyLanguageModel, we faced a choice: create a new abstraction that tries to capture everything, or build on an existing API. We chose the latter, using Apple's Foundation Models framework as the template.
This might seem counterintuitive. Why tie ourselves to Apple's choices? A few reasons:
- Foundation Models is genuinely well-designed. It leverages Swift features like macros for an ergonomic developer experience, and its abstractions around sessions, tools, and generation map well to how LLMs actually work.
- It's intentionally limited. Foundation Models represents something like a lowest common denominator for language model capabilities. Rather than seeing this as a weakness, we treat it as a stable foundation. Every Swift developer targeting Apple platforms will encounter this API, so building on it directly means less conceptual overhead.
- It keeps us grounded. Each additional layer of abstraction takes you further from the problem you're actually solving. Abstractions are powerful, but stack too many and they become a problem in themselves.
The result is that switching between providers requires minimal code changes, and the core abstractions remain clean and predictable.
One challenge with multi-backend libraries is dependency bloat. If you only want to run MLX models, you shouldn't have to pull in llama.cpp and all its dependencies. AnyLanguageModel uses Swift 6.1 package traits to solve this. You opt in to only the backends you need.
Vision-language models are incredibly capable and widely used. Unfortunately, Apple's Foundation Models framework doesn't currently support sending images with prompts. Building on an existing API means accepting its constraints. Apple will likely add image support in a future release, but vision-language models are too useful to wait for. So we've extended beyond what Foundation Models offers today.
AnyLanguageModel is currently pre-1.0. The core API is stable, but we're actively working on bringing the full feature set of Foundation Models to all adapters, namely: Tool calling, MCP integration, Guided generation, and performance optimizations. This library is the first step toward something larger: a unified inference API to build seamless agentic workflows on Apple platforms.
Source: Hugging Face Blog

















