SPB Git

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%
913 B · 29 lines swift
Raw Blame History
1//2//  UnsupportedHardwareView.swift3//  Zyquo Local4//5//  Author: Simon-Pierre Boucher6//  Mail: contact@spboucher.ai7//89import SwiftUI1011/// Polite full-window notice shown on non-Apple-Silicon hardware.12struct UnsupportedHardwareView: View {13    var body: some View {14        VStack(spacing: 16) {15            Image(systemName: "cpu")16                .font(.system(size: 56, weight: .light))17                .foregroundStyle(.secondary)18            Text("Apple Silicon Required")19                .font(.title2.weight(.semibold))20            Text("Zyquo Local runs language models on-device with MLX, which requires an Apple Silicon Mac (M1 or later). This Mac's processor is not supported.")21                .multilineTextAlignment(.center)22                .foregroundStyle(.secondary)23                .frame(maxWidth: 420)24        }25        .frame(minWidth: 640, minHeight: 420)26        .padding(40)27    }28}29