diff --git a/README.md b/README.md index cdee3b8b..54c39222 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ Add this package to your `Package.swift`: ```swift dependencies: [ - .package(url: "https://github.com/huggingface/AnyLanguageModel", from: "0.12.0") + .package(url: "https://github.com/huggingface/AnyLanguageModel", from: "0.13.0") ] ``` @@ -127,7 +127,7 @@ To enable specific traits, specify them in your package's dependencies: dependencies: [ .package( url: "https://github.com/huggingface/AnyLanguageModel.git", - from: "0.12.0", + from: "0.13.0", traits: ["CoreML", "MLX"] // Enable CoreML and MLX support ) ] @@ -144,7 +144,7 @@ dependencies: [ > dependencies: [ > .package( > url: "https://github.com/huggingface/AnyLanguageModel.git", -> from: "0.12.0", +> from: "0.13.0", > traits: ["CoreML", "MLX", "Llama"] > ), > .package(url: "https://github.com/huggingface/swift-transformers", from: "1.0.0"), // CoreML @@ -593,7 +593,7 @@ Enable the trait in Package.swift: ```swift .package( url: "https://github.com/huggingface/AnyLanguageModel.git", - from: "0.12.0", + from: "0.13.0", traits: ["CoreML"] ) ``` @@ -690,7 +690,7 @@ Enable the trait in Package.swift: ```swift .package( url: "https://github.com/huggingface/AnyLanguageModel.git", - from: "0.12.0", + from: "0.13.0", traits: ["MLX"] ) ``` @@ -714,7 +714,7 @@ Enable the trait in Package.swift: ```swift .package( url: "https://github.com/huggingface/AnyLanguageModel.git", - from: "0.12.0", + from: "0.13.0", traits: ["Llama"] ) ```