Why this quest stays shallow on MLX
MLX is the Apple-native ML framework — fast, well-designed, and worth deep study. But it's also a fast-moving target: APIs shift, breaking changes are common, and stale tutorials are misleading more often than helpful. Going deep on MLX in this quest would either go out of date quickly or push the quest into "Apple-only" territory that not everyone has hardware for.
What you do need to know now
- MLX exists. It's Apple Silicon only.
- Ollama on Apple Silicon (v0.19+) uses MLX under the hood. Most users never touch MLX directly.
- For direct MLX use, the entry point is
mlx-lmon PyPI:pip install -U mlx mlx-lm. - Models live on the
mlx-communityHuggingFace org.
Where MLX deep-dives belong
A separate, MLX-specific quest. Until that exists, use Ollama for daily local AI on Apple Silicon and reach for mlx-lm directly only when (a) you need a model that's MLX-only, (b) you're building a custom pipeline that benefits from MLX's NumPy-like API, or (c) you're contributing to MLX itself.