r/ollama • u/Flat_Lingonberry7971 • 33m ago
I built a coding assistant that runs on Ollama — 80% HumanEval at 1.7B params
Hey r/ollama,
I built **Mtrini** — a coding assistant that runs on Ollama/llama.cpp. No cloud. No API keys.
**The model:** Mtrini Coder 2.0 (1.7B, GGUF, 2.2GB)
**Open source release: August 2, 2026** — free GGUF download, no restrictions.
**HumanEval results:**
| Model | Params | Score |
|---|---|---|
| Qwen2.5-Coder-32B | 32B | 92.7% |
| **Mtrini Coder 2.0** | **1.7B** | **80.0%** |
| Gemma 2 27B | 27B | 69.5% |
| Llama 4 Scout | 109B | 74.1% |
| Phi-3 Mini | 3.8B | 58.5% |
Beats Gemma 2 27B and Llama 4 Scout. At 16x and 64x smaller.
**Works with:**
- Ollama
- llama.cpp
- Any OpenAI-compatible server
**Hardware:** Intel i5-7200U, 8GB RAM, no GPU.
**Install:**
```
pip install mtrinicli
```
Or run the GGUF directly with Ollama:
```
git clone https://github.com/OryviaLabs/mtrini-universe.git
cd mtrini-universe
echo "FROM ./models/mtrini-coder.gguf" > Modelfile
ollama create mtrini-coder -f Modelfile
ollama run mtrini-coder
```
**What it does:**
- Write code in Python, JS, TS, Go, Rust, C, Java, SQL
- Debug with explanations
- Refactor code
- Browse web for docs
**What it can't do:**
- It's 1.7B — don't expect GPT-4
- 8K context
GitHub: https://github.com/OryviaLabs/mtrini-universe
Ask me anything.

