## Summary - Extract PHP/Laravel commands to `core/php` repo (42 files, standalone module) - Extract CI/release + SDK commands to `core/ci` repo (10 files) - Remove `internal/variants/` build tag system entirely - Move all 30 remaining command packages from `internal/cmd/` to top-level `cmd/` - Rewrite `main.go` with direct imports — no more variant selection - PHP and CI are now optional via commented import lines in main.go Co-authored-by: Claude <developers@lethean.io> Reviewed-on: #2 Co-authored-by: Charon <charon@lthn.ai> Co-committed-by: Charon <charon@lthn.ai>
40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
package ml
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"forge.lthn.ai/core/go/pkg/cli"
|
|
"forge.lthn.ai/core/go/pkg/ml"
|
|
)
|
|
|
|
var (
|
|
ggufInput string
|
|
ggufConfig string
|
|
ggufOutput string
|
|
ggufArch string
|
|
)
|
|
|
|
var ggufCmd = &cli.Command{
|
|
Use: "gguf",
|
|
Short: "Convert MLX LoRA adapter to GGUF format",
|
|
Long: "Converts an MLX safetensors LoRA adapter to GGUF v3 format for use with llama.cpp.",
|
|
RunE: runGGUF,
|
|
}
|
|
|
|
func init() {
|
|
ggufCmd.Flags().StringVar(&ggufInput, "input", "", "Input safetensors file (required)")
|
|
ggufCmd.Flags().StringVar(&ggufConfig, "config", "", "Adapter config JSON (required)")
|
|
ggufCmd.Flags().StringVar(&ggufOutput, "output", "", "Output GGUF file (required)")
|
|
ggufCmd.Flags().StringVar(&ggufArch, "arch", "gemma3", "GGUF architecture name")
|
|
ggufCmd.MarkFlagRequired("input")
|
|
ggufCmd.MarkFlagRequired("config")
|
|
ggufCmd.MarkFlagRequired("output")
|
|
}
|
|
|
|
func runGGUF(cmd *cli.Command, args []string) error {
|
|
if err := ml.ConvertMLXtoGGUFLoRA(ggufInput, ggufConfig, ggufOutput, ggufArch); err != nil {
|
|
return fmt.Errorf("convert to GGUF: %w", err)
|
|
}
|
|
fmt.Printf("GGUF LoRA adapter written to %s\n", ggufOutput)
|
|
return nil
|
|
}
|