Skip to content

Commit 7f62ac9

Browse files
simbasimba
authored andcommitted
fix(deps): use remote URL dependencies for mlx-swift and mlx-swift-lm
1 parent da535ea commit 7f62ac9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ let package = Package(
1010
],
1111
dependencies: [
1212
// Local Apple MLX Swift fork for C++ extensions
13-
.package(path: "./LocalPackages/mlx-swift"),
13+
.package(url: "https://github.com/SharpAI/mlx-swift.git", branch: "main"),
1414
// Apple's LLM library built on MLX Swift (SharpAI fork — with GPU/CPU layer partitioning)
15-
.package(path: "./mlx-swift-lm"),
15+
.package(url: "https://github.com/SharpAI/mlx-swift-lm.git", branch: "main"),
1616
// HuggingFace tokenizers + model download
1717
.package(url: "https://github.com/huggingface/swift-transformers", .upToNextMinor(from: "1.2.0")),
1818
// Lightweight HTTP server (Apple-backed Swift server project)

0 commit comments

Comments
 (0)