flask-llama / llama.cpp /Package.swift
YZ-TAN's picture
Upload 2821 files
5a29263 verified
raw
history blame contribute delete
383 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"),
]
)