Files
ollama-ollama/x/imagegen/runner_stub.go
2026-02-05 18:25:56 -08:00

11 lines
218 B
Go

//go:build !mlx
package imagegen
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")
}