mirror of
https://github.com/dogkeeper886/ollama37.git
synced 2025-12-12 08:47:01 +00:00
- Add Gemma3n model support with text generation capabilities - Add new CUDA mean operations for improved performance - Add macOS documentation and performance tests - Update LLAMA patches for ROCm/CUDA compatibility - Fix various model conversion and processing issues - Update CI workflows and build configurations - Add library model tests and Shakespeare test data 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
529 B
Go
15 lines
529 B
Go
package models
|
|
|
|
import (
|
|
_ "github.com/ollama/ollama/model/models/gemma2"
|
|
_ "github.com/ollama/ollama/model/models/gemma3"
|
|
_ "github.com/ollama/ollama/model/models/gemma3n"
|
|
_ "github.com/ollama/ollama/model/models/llama"
|
|
_ "github.com/ollama/ollama/model/models/llama4"
|
|
_ "github.com/ollama/ollama/model/models/mistral3"
|
|
_ "github.com/ollama/ollama/model/models/mllama"
|
|
_ "github.com/ollama/ollama/model/models/qwen2"
|
|
_ "github.com/ollama/ollama/model/models/qwen25vl"
|
|
_ "github.com/ollama/ollama/model/models/qwen3"
|
|
)
|