docs(local-llms): expand installed models table with parameters and quantization

- Add Parameters, Quantization, and Status columns to models table
- qwen2.5-coder:32b: 32.8B params, Q4_K_M, 18.5 GB disk
- llama3.1:8b: 8B params, Q4_K_M, 4.9 GB disk (confirmed via ollama API)
This commit is contained in:
saravanakumardb1 2026-02-19 16:05:42 -08:00
parent 1552006feb
commit 71a7623553

View File

@ -46,10 +46,10 @@ NO_PROXY="ollama.com,registry.ollama.ai" ollama pull <model>
Verified 2026-02-19:
| Model | Size | Pull Command | Use Case |
| ------------------- | ------ | ------------------------------- | --------------------------------------------- |
| `qwen2.5-coder:32b` | 19 GB | `ollama pull qwen2.5-coder:32b` | Best coding model — Swift, TypeScript, Python |
| `llama3.1:8b` | 4.9 GB | `ollama pull llama3.1:8b` | Default for evals, fast inference |
| Model | Disk Size | Parameters | Quantization | Status | Use Case |
| ------------------- | --------- | ---------- | ------------ | --------- | --------------------------------------------- |
| `qwen2.5-coder:32b` | 18.5 GB | 32.8B | Q4_K_M | ✅ Loaded | Best coding model — Swift, TypeScript, Python |
| `llama3.1:8b` | 4.9 GB | 8B | Q4_K_M | ✅ Loaded | Default for evals, fast inference |
### Useful Commands