$cat newsletter/issue-001.md
ISSUE #1//MAI 2025

Top 5 Local LLMs You Should Be Running in 2025

Running LLMs locally isn't a niche hobby anymore — it's a legitimate engineering strategy. You get zero latency on your private data, no per-token billing, and full control over the runtime. In 2025, the models have caught up to the promise.

// tl;dr picks
#ModelVRAM
01
Llama 3.1 8B
via Ollama
8 GB
02
Mistral 7B
8 GB
03
Phi-3 Mini
3.8B
4 GB
04
Gemma 2 9B
8–12 GB
05
Qwen2 7B
8 GB
// deep dives
01.

Llama 3.1 8B (via Ollama)

The daily driver

Meta's Llama 3.1 series raised the bar for open-weight models, and the 8B variant hits the sweet spot between capability and hardware requirements. Pair it with Ollama and you get a dead-simple `ollama run llama3.1` that just works — no Python environment juggling, no quantization headaches.

// Best ForDaily AI pair programming, scripting utilities, local chat that doesn't phone home.
$ollama pull llama3.1
02.

Mistral 7B

The workhorse

Mistral AI punched above its weight class when they dropped this model, and it still earns its keep. The instruction-tuned variant follows prompts precisely and responds fast — noticeably faster than most 7–8B competitors at the same hardware budget. Query it hundreds of times a day without hitting a rate limit.

// Best ForHigh-frequency automated pipelines, document parsing, throughput-sensitive use cases.
$ollama pull mistral
03.

Phi-3 Mini (3.8B)

The edge champion

Microsoft's Phi series proved that model size isn't everything. Phi-3 Mini was trained on carefully curated "textbook quality" data, giving it reasoning ability that embarrasses models twice its size. Runs comfortably on a laptop GPU or even a beefy CPU.

// Best ForEdge deployments, embedded tooling, machines without a GPU requirement.
$ollama pull phi3
04.

Gemma 2 9B

The structured thinker

Google's Gemma 2 benefits from Google's training infrastructure in a way you can feel. The 9B variant is the one to use — the quality jump from 2B is significant. Particularly strong at structured output and follows complex, multi-step instructions reliably without constant babysitting.

// Best ForCode generation, structured JSON/YAML from natural language, multi-step instructions.
$ollama pull gemma2
05.

Qwen2 7B

The multilingual sleeper

Alibaba's Qwen2 deserves more attention in Western dev circles. One of the strongest 7B-class models for non-English text, and benchmark scores are competitive across the board in English too. Rare 128K context window at this size — process long documents in a single pass.

// Best ForMultilingual data, long documents in a single pass, global-audience tooling.
$ollama pull qwen2
// get started in 30 seconds
bash
# Install Ollama (30 seconds)
curl -fsSL https://ollama.ai/install.sh | sh

# Pull all five models
ollama pull llama3.1
ollama pull mistral
ollama pull phi3
ollama pull gemma2
ollama pull qwen2

# Start the OpenAI-compatible API server
ollama serve
# → http://localhost:11434

// next issue

Issue #2 drops the head-to-head benchmark — 6 models, real dev tasks, numbers not vibes.

▸ Read Issue #2

Enjoyed this?

Subscribe for $9/month

▸ Subscribe — $9/month

cancel anytime · secured by stripe · no cloud lock-in