Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ let package = Package(
.package(url: "https://github.com/mattt/JSONSchema.git", from: "1.3.0"),
.package(url: "https://github.com/mattt/EventSource.git", from: "1.3.0"),
.package(url: "https://github.com/mattt/PartialJSONDecoder.git", from: "1.0.0"),
.package(url: "https://github.com/ml-explore/mlx-swift-examples/", branch: "main"),
.package(url: "https://github.com/ml-explore/mlx-swift-lm/", branch: "main"),
.package(url: "https://github.com/huggingface/swift-transformers", from: "1.0.0"),
.package(url: "https://github.com/mattt/llama.swift", .upToNextMajor(from: "1.6818.0")),
],
Expand All @@ -46,17 +46,17 @@ let package = Package(
.product(name: "PartialJSONDecoder", package: "PartialJSONDecoder"),
.product(
name: "MLXLLM",
package: "mlx-swift-examples",
package: "mlx-swift-lm",
condition: .when(traits: ["MLX"])
),
.product(
name: "MLXVLM",
package: "mlx-swift-examples",
package: "mlx-swift-lm",
condition: .when(traits: ["MLX"])
),
.product(
name: "MLXLMCommon",
package: "mlx-swift-examples",
package: "mlx-swift-lm",
condition: .when(traits: ["MLX"])
),
.product(
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ This results in smaller binary sizes and faster build times.
- `CoreML`: Enables Core ML model support
(depends on `huggingface/swift-transformers`)
- `MLX`: Enables MLX model support
(depends on `ml-explore/mlx-swift-examples`)
(depends on `ml-explore/mlx-swift-lm`)
- `Llama`: Enables llama.cpp support
(requires `mattt/llama.swift`)

Expand Down