Instructions to use KiwiMate/KiwiMate-Medium-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-Medium-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-Medium-1.0:Q4_K_M # Run inference directly in the terminal: llama cli -hf KiwiMate/KiwiMate-Medium-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-Medium-1.0:Q4_K_M # Run inference directly in the terminal: llama cli -hf KiwiMate/KiwiMate-Medium-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-Medium-1.0:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf KiwiMate/KiwiMate-Medium-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-Medium-1.0:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf KiwiMate/KiwiMate-Medium-1.0:Q4_K_M
Use Docker
docker model run hf.co/KiwiMate/KiwiMate-Medium-1.0:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use KiwiMate/KiwiMate-Medium-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-Medium-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-Medium-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-Medium-1.0:Q4_K_M
- Ollama
How to use KiwiMate/KiwiMate-Medium-1.0 with Ollama:
ollama run hf.co/KiwiMate/KiwiMate-Medium-1.0:Q4_K_M
- Unsloth Studio
How to use KiwiMate/KiwiMate-Medium-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-Medium-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-Medium-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-Medium-1.0 to start chatting
- Pi
How to use KiwiMate/KiwiMate-Medium-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-Medium-1.0:Q4_K_M
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-Medium-1.0:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use KiwiMate/KiwiMate-Medium-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-Medium-1.0:Q4_K_M
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-Medium-1.0:Q4_K_M" \ --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-Medium-1.0 with Docker Model Runner:
docker model run hf.co/KiwiMate/KiwiMate-Medium-1.0:Q4_K_M
- Lemonade
How to use KiwiMate/KiwiMate-Medium-1.0 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull KiwiMate/KiwiMate-Medium-1.0:Q4_K_M
Run and chat with the model
lemonade run user.KiwiMate-Medium-1.0-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use KiwiMate/KiwiMate-Medium-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-Medium-1.0:Q4_K_M
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-Medium-1.0:Q4_K_M
Run Hermes
hermes
- Atomic Chat
KiwiMate-Medium-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-Medium-1.0 is the upper-mid tier in the KiwiMate model family, built for conversations that need stronger reasoning than Small can offer while staying self-hostable on a single high-VRAM GPU.
Model Details
| Base model | Qwen/Qwen3.6-27B |
| Parameters | ~27B |
| Architecture | Hybrid linear/full attention (48 linear-attention layers, 16 full-attention layers, 64 total) |
| Context length | 262,144 tokens |
| Modality | Text + image (vision-language) |
| Fine-tuning | Unsloth, 2x faster training |
| Format | GGUF (for llama.cpp) |
| License | Apache 2.0 |
KiwiMate-Medium-1.0 was fine-tuned from Qwen3.6-27B 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.
Licensing note: Qwen3.6-27B is released under Apache 2.0, which permits commercial use, fine-tuning, and redistribution without royalties — a cleaner license position than KiwiMate Mini's Qwen2.5-VL-3B base, which ships under the more restrictive Qwen Research license.
Available Files
| File | Type | Size | Use case |
|---|---|---|---|
KiwiMate-Medium-1.0.BF16-00001-of-00002.gguf + ...00002-of-00002.gguf |
Full precision (split) | ~54.7 GB total | Evaluation, highest fidelity |
KiwiMate-Medium-1.0.Q8_0.gguf |
8-bit quant | 29.0 GB | Near-lossless, lower VRAM |
KiwiMate-Medium-1.0.Q4_K_M.gguf |
4-bit quant | 16.8 GB | Best for single high-VRAM consumer GPU |
KiwiMate-Medium-1.0.BF16-mmproj.gguf |
Vision projector | 931.1 MB | Required alongside any of the above for image input |
Usage
llama.cpp
Text-only:
llama-cli -hf KiwiMate/KiwiMate-Medium-1.0 --jinja
Multimodal (text + image):
llama-mtmd-cli -hf KiwiMate/KiwiMate-Medium-1.0 --jinja
Serving as an OpenAI-compatible endpoint
Intended for deployment behind a Hugging Face Inference Endpoint (llama.cpp backend) or self-hosted with llama-server, which exposes the same OpenAI-compatible API:
llama-server -hf KiwiMate/KiwiMate-Medium-1.0 --jinja --port 8080
curl http://localhost:8080/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"messages": [{"role": "user", "content": "Explain the difference between a tramping track and a walking track in NZ."}]
}'
Intended Use
Conversations requiring stronger reasoning, longer context, or more nuanced NZ cultural/te reo Māori handling than KiwiMate-Small-1.0. Suited to a single high-VRAM GPU deployment (e.g. L40S-class or better at Q4_K_M/Q8_0).
Limitations
- Fine-tuned for a specific companion persona; not intended as a general-purpose assistant.
- Vision understanding inherits the base model's ViT encoder; expect reduced accuracy on dense text-in-image (OCR-heavy) tasks.
- Larger footprint than Small — not suited to edge/low-VRAM deployment; use Small or Mini for that.
- As with any fine-tune, verify outputs before using in production-critical contexts.
Acknowledgements
Fine-tuned and converted to GGUF using Unsloth.
- Downloads last month
- 529
4-bit
8-bit
16-bit
Model tree for KiwiMate/KiwiMate-Medium-1.0
Base model
Qwen/Qwen3.6-27B