We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a94ebe commit 4693100Copy full SHA for 4693100
Package.swift
@@ -20,8 +20,13 @@ let package = Package(
20
targets: [
21
.target(name: "SwiftLlama",
22
dependencies: [
23
- .product(name: "llama", package: "llama.cpp")
+ "LlamaFramework"
24
]),
25
.testTarget(name: "SwiftLlamaTests", dependencies: ["SwiftLlama"]),
26
+ .binaryTarget(
27
+ name: "LlamaFramework",
28
+ url: "https://github.com/ggml-org/llama.cpp/releases/download/b5046/llama-b5046-xcframework.zip",
29
+ checksum: "c19be78b5f00d8d29a25da41042cb7afa094cbf6280a225abe614b03b20029ab"
30
+ )
31
]
32
)
0 commit comments