Files
ollama/x/mlxrunner/runner_stub.go
2026-02-02 15:22:11 -08:00

11 lines
219 B
Go

//go:build !mlx
package mlxrunner
import "errors"
// Execute returns an error when not built with MLX support.
func Execute(args []string) error {
return errors.New("MLX runner not available: build with mlx tag")
}