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//2// Main.swift3// Zyquo Local4//5// Author: Simon-Pierre Boucher6// Mail: contact@spboucher.ai7//89import AppKit10import SwiftUI1112/// Entry point. Dispatches to the CLI proof-of-concept / verification harness13/// when invoked with flags, otherwise boots the SwiftUI application.14@main15enum Main {16 static func main() async {17 let args = CommandLine.arguments18 if args.contains("--poc") {19 await PoCRunner.run(arguments: args)20 return21 }22 if args.contains("--hub-poc") {23 await HubPoCRunner.run()24 return25 }26 if args.contains("--verify") {27 await VerifyRunner.run(arguments: args)28 return29 }30 ZyquoLocalApp.main()31 }32}33