-
Notifications
You must be signed in to change notification settings - Fork 62
Closed
Description
error:
'CoreMLLanguageModelError' is only available in iOS 18.0 or newer
my Package.swift
// swift-tools-version: 6.1
import PackageDescription
let package = Package(
name: "MyAppKit",
platforms: [
.macOS(.v14),
.iOS(.v17),
.visionOS(.v1),
],
products: [
.library(
name: "MyAppKit",
targets: ["MyAppKit"]
)
],
dependencies: [
.package(
url: "https://github.com/mattt/AnyLanguageModel",
branch: "main",
traits: ["MLX"]
)
],
targets: [
.target(
name: "MyAppKit",
dependencies: [
.product(name: "AnyLanguageModel", package: "AnyLanguageModel")
]
)
]
)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels