mirror of
https://github.com/ollama/ollama.git
synced 2026-01-12 00:06:57 +08: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")
|
|
}
|