1 Download Updated 2 weeks ago
ollama run KiwiMate/KiwiMate-Large-1.0
license: apache-2.0 base_model: Qwen/Qwen3.6-35B-A3B language: - en - mi tags: - gguf - llama.cpp - unsloth - moe - vision-language-model - conversational - endpoints_compatible - new-zealand pipeline_tag: image-text-to-text
KiwiMate is an AI companion app for iOS and Android with a distinctly New Zealand cultural identity — everyday NZ English, te reo Māori, and Kiwi context baked into how it talks. KiwiMate-Large-1.0 is the flagship tier of the KiwiMate model family, built for the heaviest reasoning and longest-context workloads while staying deployable on modest hardware thanks to its mixture-of-experts design.
| Base model | Qwen/Qwen3.6-35B-A3B |
| Parameters | ~35B total, ~3B active per token (MoE) |
| Architecture | Hybrid linear/full attention MoE — 40 layers (30 Gated DeltaNet + 10 Gated Attention, interleaved 3:1), 256 experts (8 routed + 1 shared active per token) |
| Context length | 262,144 tokens |
| Modality | Text + image (vision-language) |
| Fine-tuning | Unsloth (QLoRA) |
| Format | GGUF (for llama.cpp) |
| License | Apache 2.0 |
KiwiMate-Large-1.0 was fine-tuned from Qwen3.6-35B-A3B on KiwiMate’s proprietary dataset of New Zealand English, te reo Māori, and Kiwi cultural context, tuned for the AI-companion persona used across the KiwiMate app. Because only ~3B of the ~35B total parameters activate per token, Large aims for noticeably stronger reasoning than Medium while staying lighter to serve than a dense model of equivalent total size — most of the expert weights can sit in system RAM, with only the active path needing to live on the GPU.
Licensing note: Qwen3.6-35B-A3B is released under Apache 2.0, which permits commercial use, fine-tuning, and redistribution without royalties — the same clean license position as Small and Medium, and a cleaner one than KiwiMate Mini’s Qwen2.5-VL-3B base (Qwen Research license).
This tier had a rockier road than the others — the base model went through several candidates (Step-3.7-Flash, then Inkling-Small as a fallback) before settling on Qwen3.6-35B-A3B, and training this one surfaced its own share of problems. A few things worth knowing before you deploy:
mmproj-F16.gguf is now published alongside the text weights.Given the rocky training run, run a thorough eval pass — vision included — before routing production traffic to this tier.
| File | Type | Size | Use case |
|---|---|---|---|
KiwiMate-Large-1.0.F16-00001-of-00002.gguf + ...00002-of-00002.gguf |
Full precision (split) | ~71.1 GB total | Evaluation, highest fidelity |
mmproj-F16.gguf |
Vision projector | 899.3 MB | Required alongside the F16 GGUF above for image input |
Because this is an MoE model, the full ~71 GB doesn’t need to sit in VRAM — llama.cpp can offload most of the expert weights to system RAM and keep only the ~3B active path on GPU (--n-cpu-moe / -ot expert-offload flags). A 12–24 GB GPU paired with enough system RAM to hold the routed experts is a realistic target once quantized builds are up; the current F16-only files are best suited to a workstation/server with substantial combined VRAM+RAM.
Text-only:
llama-cli -hf KiwiMate/KiwiMate-Large-1.0 --jinja
Multimodal (text + image):
llama-mtmd-cli -hf KiwiMate/KiwiMate-Large-1.0 --jinja
Qwen3.6 doesn’t use the in-prompt /think / /no_think toggle that Qwen3.5 does — disable reasoning via chat template kwargs instead:
llama-server -hf KiwiMate/KiwiMate-Large-1.0 --jinja --port 8080 \
--chat-template-kwargs '{"enable_thinking": false}'
llama-server -hf KiwiMate/KiwiMate-Large-1.0 --jinja --port 8080
curl http://localhost:8080/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"messages": [{"role": "user", "content": "What is the difference between a tramping track and a walking track in NZ?"}]
}'
The reasoning-heavy, long-context tier of KiwiMate — for conversations, planning, and agentic tasks that need more headroom than Medium provides, now including multimodal tasks like document and screenshot understanding. Once quantized builds land, this is also the recommended tier for lower-VRAM multimodal deployments.
llama-quantize.Fine-tuned and converted to GGUF using Unsloth.