mirror of
https://github.com/ollama/ollama.git
synced 2026-04-17 15:53:27 +02:00
11 lines
218 B
Go
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")
|
|
}
|