@@ -5,12 +5,13 @@ let package = Package(
55 name: " mlx-server " ,
66 platforms: [ . macOS( . v14) ] ,
77 dependencies: [
8- // Apple MLX Swift — core inference engine
9- . package ( url: " https://github.com/ml-explore/mlx-swift " , . upToNextMinor( from: " 0.30.3 " ) ) ,
10- // Apple's LLM library built on MLX Swift (Qwen, Llama, Mistral, Gemma etc.)
11- . package ( url: " https://github.com/ml-explore/mlx-swift-lm " , from: " 2.0.0 " ) ,
8+ // Apple MLX Swift — core inference engine (Apple-maintained, tagged releases)
9+ . package ( url: " https://github.com/ml-explore/mlx-swift " , . upToNextMinor( from: " 0.30.6 " ) ) ,
10+ // Apple's LLM library built on MLX Swift (SharpAI fork)
11+ // Pinned to main branch for Qwen3.5 support (PRs #97, #120, #129, #133, #135 — not yet in a release tag)
12+ . package ( url: " https://github.com/SharpAI/mlx-swift-lm " , branch: " main " ) ,
1213 // HuggingFace tokenizers + model download
13- . package ( url: " https://github.com/huggingface/swift-transformers " , . upToNextMinor( from: " 1.1 .0 " ) ) ,
14+ . package ( url: " https://github.com/huggingface/swift-transformers " , . upToNextMinor( from: " 1.2 .0 " ) ) ,
1415 // Lightweight HTTP server (Apple-backed Swift server project)
1516 . package ( url: " https://github.com/hummingbird-project/hummingbird " , from: " 2.0.0 " ) ,
1617 // Async argument parser (for CLI flags: --model, --port)
0 commit comments