spb/zyquo-mlx Public MIT
The local MLX foundry for your Mac — run, fine-tune, quantize, and ship models. Nothing leaves your machine.
Swift 93.4%
Python 3.8%
Makefile 2.2%
Shell 0.5%
1//2// Main.swift3// Zyquo MLX4//5// Author: Simon-Pierre Boucher6// Mail: contact@spboucher.ai7//89import Foundation1011/// Process entry point: CLI proof-of-concept mode when inference flags are12/// present (Phase 2 gate), otherwise the SwiftUI app.13@main14enum Main {15 static func main() async {16 if CLI.shouldRun {17 exit(await CLI.run())18 }19 if CLI.shouldRunFoundry {20 exit(await CLI.runFoundry())21 }22 ZyquoMLXApp.main()23 }24}25