mirror of
https://github.com/ollama/ollama.git
synced 2026-04-30 07:57:51 -05:00
This change: * adds support for qwen3.5-next-moe models (qwen3-next/qwen3.5-next/qwen3-coder) to the MLX runner * introduces recurrent cache support and related MLX ops * updates pipeline/runner integration and adds tests
13 lines
333 B
Go
13 lines
333 B
Go
//go:build mlx
|
|
|
|
package mlxrunner
|
|
|
|
import (
|
|
_ "github.com/ollama/ollama/x/models/gemma3"
|
|
_ "github.com/ollama/ollama/x/models/glm4_moe_lite"
|
|
_ "github.com/ollama/ollama/x/models/llama"
|
|
_ "github.com/ollama/ollama/x/models/qwen3"
|
|
_ "github.com/ollama/ollama/x/models/qwen3_5"
|
|
_ "github.com/ollama/ollama/x/models/qwen3_5_moe"
|
|
)
|