C.W.K.
Stream
Lesson 03 of 05 · published

The 2026 Model Library

~20 min · models, library

Level 0Downloader
0 XP0/41 lessons0/11 achievements
0/120 XP to next level120 XP to go0% complete

Families that matter right now

FamilyMakerSizesWhy care
Llama 3.xMeta1B–405BStrong general-purpose; reliable tool use from 3.1+
Qwen 2.5 / 3 / 3.5Alibaba0.5B–235BMultilingual; tools; Qwen 3 has hybrid thinking
Gemma 3Google270M–27BBest quality-per-size; vision
DeepSeek-R1DeepSeek1.5B–671BReasoning model; competitive with O3 on math
Phi-4Microsoft14BState-of-the-art for its size
Mistral / MixtralMistral7B–12B / 8x7BTool support; Nemo has 128K context
GPT-OSSOpenAI20B–120BOpen-weight; tools; thinking
Qwen3-CoderAlibaba30B–480BCoding / agentic specialization

How to pick

  1. Start with the default Llama or Qwen family at the size your hardware fits. They're well-tested, well-supported, and have reliable tool-calling.
  2. Move to a specialist when the general one fails. Coding-heavy work → Qwen3-Coder. Hard math / reasoning → DeepSeek-R1. Vision → Gemma 3 or Qwen 2.5-VL.
  3. Don't chase newest. Stable models that have been on the library for a few months have community Modelfiles, GGUF variants from bartowski, and vetted prompt templates.

The library is a moving target

This list will be partly out of date by the time you read it — new families land monthly. The shape of the decision (general vs specialist; size vs quant; tool capability) is more durable than any specific model name.

Code

Browse the library, then commit·bash
# Browse interactively
open https://ollama.com/library

# Filter by capability — vision-capable models
# (the library page lets you filter; we replicate locally with ollama show)
for m in llama3.2-vision gemma3:12b qwen2.5vl; do
  echo "=== $m ==="
  ollama show $m | grep -i capabilities
done

# Pick ONE general model + ONE specialist as your daily set
ollama pull qwen2.5:7b           # general
ollama pull qwen3-coder:7b       # coding specialist

External links

Exercise

Pick two models from different families that fit your hardware. Pull both. Run the same five-question prompt suite (one math, one coding, one creative, one tool-friendly, one general-knowledge) and rate the answers. Decide which is your daily driver and write down why.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.