cli/internal/cmd/ml/cmd_gguf.go
Snider 0729b3a672 refactor: split CLI from monorepo, import core/go as library (#1)
- Change module from forge.lthn.ai/core/go to forge.lthn.ai/core/cli
- Remove pkg/ directory (now served from core/go)
- Add require + replace for forge.lthn.ai/core/go => ../go
- Update go.work to include ../go workspace module
- Fix all internal/cmd/* imports: pkg/ refs → forge.lthn.ai/core/go/pkg/
- Rename internal/cmd/sdk package to sdkcmd (avoids conflict with pkg/sdk)
- Remove SDK library files from internal/cmd/sdk/ (now in core/go/pkg/sdk/)
- Remove duplicate RAG helper functions from internal/cmd/rag/
- Remove stale cmd/core-ide/ (now in core/ide repo)
- Update IDE variant to remove core-ide import
- Fix test assertion for new module name
- Run go mod tidy to sync dependencies

core/cli is now a pure CLI application importing core/go for packages.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

Co-authored-by: Claude <developers@lethean.io>
Reviewed-on: #1
2026-02-16 14:24:37 +00:00

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
}