From f337f53408ef0a9ac52cf91895fee9ad265d5f1a Mon Sep 17 00:00:00 2001 From: Shang Chieh Tseng Date: Sun, 20 Jul 2025 09:47:05 +0800 Subject: [PATCH] docs: update documentation to reflect Gemma3n support in v1.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update README.md and CLAUDE.md to correctly reference Gemma3n model support that was added in version 1.3.0, replacing generic "Gemma 3" references with the specific "Gemma3n" model name. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- CLAUDE.md | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 5b0b7a64..61cdcfe2 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -122,7 +122,7 @@ Ollama is a local LLM server with Go backend and C++/CUDA acceleration: - Platform-specific files for Darwin, Linux, Windows **Model Layer** (`model/`): Handles model format conversion and tokenization: -- `models/` - Model-specific implementations (Llama, Gemma, etc.) +- `models/` - Model-specific implementations (Llama, Gemma3n, etc.) - `imageproc/` - Image processing for multimodal models - Tokenizer implementations (BPE, SentencePiece) diff --git a/README.md b/README.md index 23cb13ea..51754ce3 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ ollama run gemma3 ``` ### Supported Models -All models from [ollama.com/library](https://ollama.com/library) including Llama 3.2, Gemma 3, Qwen 2.5, Phi-4, and Code Llama. +All models from [ollama.com/library](https://ollama.com/library) including Llama 3.2, Gemma3n, Qwen 2.5, Phi-4, and Code Llama. ### REST API ```bash @@ -66,7 +66,7 @@ curl http://localhost:11434/api/chat -d '{"model": "gemma3, "messages": [{"role" - **Optimized Builds**: Tesla K80-specific performance tuning ### Recent Updates -- **v1.3.0** (2025-07-19): Added Gemma 3, Qwen2.5VL, latest upstream sync +- **v1.3.0** (2025-07-19): Added Gemma3n, Qwen2.5VL, latest upstream sync - **v1.2.0** (2025-05-06): Qwen3, Gemma 3 12B, Phi-4 14B support ## Building from Source