Files
ollama/x/imagegen/runner/runner_stub.go
2026-01-09 21:09:46 -08:00

11 lines
222 B
Go

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