Instructions to use KiwiMate/KiwiMate-Mini-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-Mini-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-Mini-1.0:Q4_K_M # Run inference directly in the terminal: llama cli -hf KiwiMate/KiwiMate-Mini-1.0:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf KiwiMate/KiwiMate-Mini-1.0:Q4_K_M # Run inference directly in the terminal: llama cli -hf KiwiMate/KiwiMate-Mini-1.0:Q4_K_M
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-Mini-1.0:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf KiwiMate/KiwiMate-Mini-1.0:Q4_K_M
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-Mini-1.0:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf KiwiMate/KiwiMate-Mini-1.0:Q4_K_M
Use Docker
docker model run hf.co/KiwiMate/KiwiMate-Mini-1.0:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use KiwiMate/KiwiMate-Mini-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-Mini-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-Mini-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-Mini-1.0:Q4_K_M
- Ollama
How to use KiwiMate/KiwiMate-Mini-1.0 with Ollama:
ollama run hf.co/KiwiMate/KiwiMate-Mini-1.0:Q4_K_M
- Unsloth Studio
How to use KiwiMate/KiwiMate-Mini-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-Mini-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-Mini-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-Mini-1.0 to start chatting
- Docker Model Runner
How to use KiwiMate/KiwiMate-Mini-1.0 with Docker Model Runner:
docker model run hf.co/KiwiMate/KiwiMate-Mini-1.0:Q4_K_M
- Lemonade
How to use KiwiMate/KiwiMate-Mini-1.0 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull KiwiMate/KiwiMate-Mini-1.0:Q4_K_M
Run and chat with the model
lemonade run user.KiwiMate-Mini-1.0-Q4_K_M
List all available models
lemonade list
- Atomic Chat
KiwiMate Mini 1.0
KiwiMate Mini is the lightweight, on-device model tier for KiwiMate, an AI companion app for iOS and Android with a New Zealand cultural identity. Mini 1.0 is fine-tuned from Qwen2.5-VL-3B-Instruct, replacing the previous Llama 3.2 3B base to add image input support alongside text chat.
This model is intended for fast, low-resource inference โ locally on-device or via lightweight self-hosted endpoints โ while KiwiMate Small (Qwen3.5-9B) handles heavier multimodal tasks server-side.
โ ๏ธ Preview build. This is an early release of the Mini 1.0 line for internal testing ahead of KiwiMate app integration. Expect rough edges, especially around vision grounding and long conversations.
What's new vs. Mini Preview (Llama 3.2 3B)
- Vision input โ Mini can now see and reason about images (screenshots, photos, documents), not just text.
- New base architecture:
qwen2vl(Qwen2.5-VL) instead ofllama. - Chat template moved from Llama-3's
<|eot_id|>style to Qwen's ChatML-style<|im_start|>/<|im_end|>tokens โ update any client or server-side stop-sequence config accordingly if you're migrating from Mini Preview.
Files
| File | Size | Description |
|---|---|---|
KiwiMate-Mini-1.0-instruct.F16.gguf |
6.18 GB | Full-precision weights, highest quality, largest footprint |
KiwiMate-Mini-1.0-instruct.Q6_K.gguf |
2.54 GB | Near-lossless quantization, good balance of quality/size |
KiwiMate-Mini-1.0-instruct.Q4_K_M.gguf |
1.93 GB | Smallest, fastest, recommended for constrained/on-device use |
KiwiMate-Mini-1.0.BF16-mmproj.gguf |
1.34 GB | Vision projector โ required alongside a text GGUF above for image input |
Modelfile |
โ | Ollama Modelfile for local serving |
config.json |
โ | Model config (Unsloth training output) |
As with the previous Mini line, expect some quality drop at Q4_K_M relative to F16/Q6_K โ worth spot-checking once you've run your usual eval pass, since this is a different base architecture and the tradeoff may not track identically to the Llama 3.2 quants.
Usage
llama.cpp
Vision input requires loading both the text model and the mmproj file:
llama-mtmd-cli \
-m KiwiMate-Mini-1.0-instruct.Q4_K_M.gguf \
--mmproj KiwiMate-Mini-1.0.BF16-mmproj.gguf \
-p "Describe this image."
Ollama
ollama create kiwimate-mini -f Modelfile
ollama run kiwimate-mini
Chat template
Qwen ChatML format:
<|im_start|>system
{system_prompt}<|im_end|>
<|im_start|>user
{user_message}<|im_end|>
<|im_start|>assistant
If you're serving this behind a proxy (e.g. runpod-chat/index.ts), make sure stop sequences are updated to <|im_end|> rather than the old Llama <|eot_id|> โ the two are not interchangeable.
Training
- Base model: Qwen/Qwen2.5-VL-3B-Instruct
- Framework: Unsloth (
FastVisionModel) - Quantization: GGUF via llama.cpp (F16, Q6_K, Q4_K_M)
- Fine-tuning focus: New Zealand English, Te Reo Mฤori awareness and cultural sensitivity, KiwiMate persona and identity, conversational NZ context
Intended use
Conversational AI companion for the KiwiMate app โ casual chat, light image understanding (e.g. describing a photo, reading a screenshot), and NZ-flavoured personality. Not intended for high-stakes reasoning, factual research, or professional/medical/legal advice.
License
โ ๏ธ Please read before redistributing. This model is derived from Qwen2.5-VL-3B-Instruct, which Qwen distributes under a Qwen Research license, not Apache 2.0 โ this differs from KiwiMate's other model tiers. Review the license terms โ research licenses commonly restrict commercial deployment โ before treating this build the same as the Apache-2.0 Mini Preview / Small tiers, or before making this repo public.
Links
- KiwiMate app: kiwimate.net
- Dev logs: YouTube โ KyleCodeKiwi
- Downloads last month
- 106
4-bit
6-bit
16-bit
Model tree for KiwiMate/KiwiMate-Mini-1.0
Base model
Qwen/Qwen2.5-VL-3B-Instruct