Instructions to use KiwiMate/KiwiMate-Large-1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use KiwiMate/KiwiMate-Large-1.0 with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf KiwiMate/KiwiMate-Large-1.0:F16 # Run inference directly in the terminal: llama cli -hf KiwiMate/KiwiMate-Large-1.0:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf KiwiMate/KiwiMate-Large-1.0:F16 # Run inference directly in the terminal: llama cli -hf KiwiMate/KiwiMate-Large-1.0:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf KiwiMate/KiwiMate-Large-1.0:F16 # Run inference directly in the terminal: ./llama-cli -hf KiwiMate/KiwiMate-Large-1.0:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf KiwiMate/KiwiMate-Large-1.0:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf KiwiMate/KiwiMate-Large-1.0:F16
Use Docker
docker model run hf.co/KiwiMate/KiwiMate-Large-1.0:F16
- LM Studio
- Jan
- vLLM
How to use KiwiMate/KiwiMate-Large-1.0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "KiwiMate/KiwiMate-Large-1.0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "KiwiMate/KiwiMate-Large-1.0", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/KiwiMate/KiwiMate-Large-1.0:F16
- Ollama
How to use KiwiMate/KiwiMate-Large-1.0 with Ollama:
ollama run hf.co/KiwiMate/KiwiMate-Large-1.0:F16
- Unsloth Studio
How to use KiwiMate/KiwiMate-Large-1.0 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for KiwiMate/KiwiMate-Large-1.0 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for KiwiMate/KiwiMate-Large-1.0 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for KiwiMate/KiwiMate-Large-1.0 to start chatting
- Pi
How to use KiwiMate/KiwiMate-Large-1.0 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf KiwiMate/KiwiMate-Large-1.0:F16
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "KiwiMate/KiwiMate-Large-1.0:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use KiwiMate/KiwiMate-Large-1.0 with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf KiwiMate/KiwiMate-Large-1.0:F16
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "KiwiMate/KiwiMate-Large-1.0:F16" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use KiwiMate/KiwiMate-Large-1.0 with Docker Model Runner:
docker model run hf.co/KiwiMate/KiwiMate-Large-1.0:F16
- Lemonade
How to use KiwiMate/KiwiMate-Large-1.0 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull KiwiMate/KiwiMate-Large-1.0:F16
Run and chat with the model
lemonade run user.KiwiMate-Large-1.0-F16
List all available models
lemonade list
- Hermes Agent
How to use KiwiMate/KiwiMate-Large-1.0 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf KiwiMate/KiwiMate-Large-1.0:F16
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default KiwiMate/KiwiMate-Large-1.0:F16
Run Hermes
hermes
- Atomic Chat
KiwiMate-Large-1.0
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.
Model Details
| 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).
Status
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:
- Text generation: weights are up and confirmed working.
- Vision: enabled —
mmproj-F16.ggufis now published alongside the text weights. - Quantized GGUFs: only the full-precision F16 split is published so far. Smaller quants (Q4_K_M, Q8_0) aren't up yet.
Given the rocky training run, run a thorough eval pass — vision included — before routing production traffic to this tier.
Available Files
| 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.
Usage
llama.cpp
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}'
Serving as an OpenAI-compatible endpoint
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?"}]
}'
Intended Use
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.
Limitations
- Vision understanding inherits the base model's ViT encoder as-is (not further fine-tuned on KiwiMate's own visual data); expect reduced accuracy on dense text-in-image (OCR-heavy) tasks.
- Only F16 weights are published; running this in production today means either a large-VRAM/RAM box or quantizing the F16 files yourself with
llama-quantize. - Fine-tuned for a specific companion persona; not intended as a general-purpose assistant.
- As with any fine-tune — and especially given the rocky training path for this tier — verify outputs before using in production-critical contexts.
Acknowledgements
Fine-tuned and converted to GGUF using Unsloth.
- Downloads last month
- 64
16-bit
Model tree for KiwiMate/KiwiMate-Large-1.0
Base model
Qwen/Qwen3.6-35B-A3B