SPB Git

spb/forge-studio Public

The Instruments of LLM training — a native macOS cockpit for Forge. Train language models from scratch on Apple Silicon without a terminal.

Swift 95.7% Shell 4.3%
762 B · 26 lines swift
Raw Blame History
1// swift-tools-version: 5.102// Author: Simon-Pierre Boucher — contact@spboucher.ai3// Forge Studio — native macOS GUI companion for the Forge LLM training4// framework. SwiftPM is the canonical build system (zyquo-term pattern);5// scripts/package-app.sh turns the executable into a .app bundle.6import PackageDescription78let package = Package(9    name: "ForgeStudio",10    platforms: [.macOS(.v14)],11    products: [12        .executable(name: "ForgeStudio", targets: ["ForgeStudio"])13    ],14    targets: [15        .executableTarget(16            name: "ForgeStudio",17            path: "ForgeStudio"18        ),19        .testTarget(20            name: "ForgeStudioTests",21            dependencies: ["ForgeStudio"],22            path: "Tests"23        ),24    ]25)26