cli/cmd/ml/cmd_sandwich_init.go
Snider 2d3f91ba83 feat(ml): add core ml sandwich command for LEK training data generation
Sandwich format wraps seed prompts with KB preamble (axioms framework)
and LEK-1 kernel postfix, then generates responses via local MLX
inference. Outputs chat JSONL compatible with 'core ml train'.

Supports --dry-run mode to output prompts without inference.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-02-17 17:46:10 +00:00

7 lines
87 B
Go

//go:build darwin && arm64
package ml
func init() {
mlCmd.AddCommand(sandwichCmd)
}