MLX serve backend now auto-enables on darwin/arm64. Fixed stale cmd/app/main.go reference in Taskfile. Co-Authored-By: Virgil <virgil@lethean.io>
9 lines
181 B
Go
9 lines
181 B
Go
//go:build !(darwin && arm64)
|
|
|
|
package ml
|
|
|
|
import "forge.lthn.ai/core/go-ai/ml"
|
|
|
|
func createServeBackend() (ml.Backend, error) {
|
|
return ml.NewHTTPBackend(apiURL, modelName), nil
|
|
}
|