spb/zyquo-local Public MIT
Native macOS AI chat that runs LLMs 100% locally on Apple Silicon with MLX — no cloud, no API keys.
Swift 97.2%
Shell 1.8%
Makefile 1%
1// swift-tools-version: 6.12//3// Package.swift4// Zyquo Local5//6// Author: Simon-Pierre Boucher7// Mail: contact@spboucher.ai8//910import PackageDescription1112let package = Package(13 name: "ZyquoLocal",14 platforms: [.macOS(.v14)],15 dependencies: [16 .package(url: "https://github.com/ml-explore/mlx-swift-lm", .upToNextMajor(from: "3.31.4")),17 .package(url: "https://github.com/huggingface/swift-huggingface", from: "0.9.0"),18 .package(url: "https://github.com/huggingface/swift-transformers", from: "1.3.0"),19 .package(url: "https://github.com/swiftlang/swift-markdown", from: "0.5.0"),20 ],21 targets: [22 .executableTarget(23 name: "ZyquoLocal",24 dependencies: [25 .product(name: "MLXLLM", package: "mlx-swift-lm"),26 .product(name: "MLXLMCommon", package: "mlx-swift-lm"),27 .product(name: "MLXHuggingFace", package: "mlx-swift-lm"),28 .product(name: "HuggingFace", package: "swift-huggingface"),29 .product(name: "Tokenizers", package: "swift-transformers"),30 .product(name: "Markdown", package: "swift-markdown"),31 ],32 path: "Sources/ZyquoLocal"33 )34 ]35)36