Quantization-LLM / llama.cpp /Package.swift
KBaba7's picture
Upload 7646 files
a1a4268 verified
raw
history blame contribute delete
364 Bytes
// swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "llama",
platforms: [
.macOS(.v12),
.iOS(.v14),
.watchOS(.v4),
.tvOS(.v14)
],
products: [
.library(name: "llama", targets: ["llama"]),
],
targets: [
.systemLibrary(name: "llama", pkgConfig: "llama"),
]
)