mirror of
https://github.com/ollama/ollama.git
synced 2026-03-29 03:18:44 +07:00
11 lines
222 B
Go
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")
|
|
}
|