Compare commits

..

2 Commits

Author SHA1 Message Date
887f0ae266 sync: auto-sync from DESKTOP-0O8A1RL at 2026-05-16 16:26:04
Author: Mike Swanson
Machine: DESKTOP-0O8A1RL
Timestamp: 2026-05-16 16:26:04
2026-05-16 16:26:07 -07:00
4aadf16a9f feat: add qwen3:8b for DESKTOP-0O8A1RL, update Ollama routing
Benchmarked 2026-05-16 on DESKTOP-0O8A1RL (RTX 5070 Ti Laptop, 12 GB VRAM):
- qwen3:8b: 100% VRAM fit (10.9/10.9 GB) -> 74-86 tok/s
- qwen3:14b: 73% VRAM (11.3/15.6 GB split) -> 17-18 tok/s (4.8x slower)
- qwen3.6:  41% VRAM (11.3/27.5 GB split) -> 17-19 tok/s

qwen3:14b overflows 12 GB VRAM at runtime (9.3 GB GGUF = 15.6 GB loaded).
qwen3:8b fits entirely in VRAM and matches the reference machine speed.

Updated OLLAMA.md: added qwen3:8b to models table, per-machine routing
table, benchmark results. Updated CLAUDE.md model one-liner.
Routing: qwen3:8b for prose on DESKTOP-0O8A1RL, qwen3:14b everywhere else,
qwen3.6 for strict-format tasks on all machines.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-16 16:25:57 -07:00
5 changed files with 302 additions and 17 deletions

View File

@@ -272,7 +272,7 @@ Tier 0 — **Ollama is the documentation and classification engine.** Route pros
| DESKTOP-0O8A1RL | `http://localhost:11434` |
| Other | `http://100.92.127.64:11434` (Tailscale) |
Models: `qwen3.6:latest` (strict-format: JSON, classification, structured rules, redaction, word-limited summaries, untrusted-input handling), `qwen3:14b` (bulk prose: session logs, commit bodies, free-text drafts — 2x faster), `codestral:22b` (code suggestions — always review). Full reference + routing rationale: `.claude/OLLAMA.md`
Models: `qwen3.6:latest` (strict-format: JSON, classification, structured rules, redaction, word-limited summaries), `qwen3:8b` (prose on DESKTOP-0O8A1RL — 86 tok/s, full 12 GB VRAM fit), `qwen3:14b` (prose everywhere else — ~66 tok/s), `codestral:22b` (code suggestions — always review). Full reference + per-machine routing: `.claude/OLLAMA.md`
### GrepAI (Semantic Code Search)

View File

@@ -6,12 +6,34 @@ Ollama runs on Mike's workstation (DESKTOP-0O8A1RL) with GPU acceleration. Avail
| Model | Size | Use For |
|-------|------|---------|
| `qwen3.6:latest` | 24 GB | Strict-format work: JSON/structured extraction, classification, per-item rules, redaction, word-limited summaries, adherence-critical drafting. ~32 tok/s. |
| `qwen3:14b` | 9.3 GB | Bulk prose where format is loose: session log narrative, commit bodies, client notes, free-text handoffs. ~66 tok/s — 2x faster than 3.6. |
| `qwen3.6:latest` | 23 GB | Strict-format work: JSON/structured extraction, classification, per-item rules, redaction, word-limited summaries, adherence-critical drafting. 36B MoE. |
| `qwen3:14b` | 9.3 GB | Bulk prose on machines with >16 GB VRAM: session log narrative, commit bodies, client notes, free-text handoffs. |
| `qwen3:8b` | 5.2 GB | Bulk prose on DESKTOP-0O8A1RL (12 GB VRAM). Same role as qwen3:14b but fits fully in VRAM on that machine. |
| `codestral:22b` | 12 GB | Code generation, refactoring suggestions, docstrings |
| `nomic-embed-text` | 274 MB | Embeddings only (used by GrepAI) |
Routing basis: 16-prompt benchmark on 2026-05-16 (`benchmark_qwen_3_6.py` in repo root). qwen3.6 scored 15/16 vs qwen3:14b 11/16 and qwen3:32b 12/16. 3.6 won every strict-format and adherence test (multi-step rules, schedule reasoning with weekend trap, prompt-injection resistance, word-limit summary) — at the cost of ~2x slower inference. **Known regression**: 3.6 missed one small reasoning prompt (3 vs expected 4) that 14b/32b got — re-validate when qwen3.7 lands. qwen3:32b is dominated on every axis; not in routing rotation.
### Routing basis
Quality routing: 16-prompt benchmark on 2026-05-16 (`benchmark_qwen_3_6.py` in repo root). qwen3.6 scored 15/16 vs qwen3:14b 11/16 and qwen3:32b 12/16. 3.6 won every strict-format and adherence test. **Known regression**: 3.6 missed one small reasoning prompt — re-validate when qwen3.7 lands. qwen3:32b dominated on every axis; not in rotation.
Speed routing: benchmarked 2026-05-16 on DESKTOP-0O8A1RL (RTX 5070 Ti Laptop, 12 GB VRAM):
| Model | VRAM fit | Tok/s (this machine) | Tok/s (full-VRAM ref) |
|-------|----------|----------------------|------------------------|
| qwen3:8b | 100% (10.9/10.9 GB) | **74-86** | ~90 |
| qwen3:14b | 73% (11.3/15.6 GB) | 17-18 | ~66 |
| qwen3.6 | 41% (11.3/27.5 GB) | 17-19 | ~32 |
qwen3:14b and qwen3.6 are CPU-bottlenecked on this machine (split mode, PCIe bandwidth limited). qwen3:8b fits entirely in VRAM and is **4.8x faster** than qwen3:14b here.
### Machine-specific prose model
| Machine | GPU VRAM | Prose model |
|---------|----------|-------------|
| DESKTOP-0O8A1RL | 12 GB (RTX 5070 Ti Laptop) | `qwen3:8b` |
| Mikes-MacBook-Air | unified memory | `qwen3:14b` |
| HOWARD-HOME | local Ollama | `qwen3:14b` |
| Other | Tailscale fallback | `qwen3:14b` |
## Endpoints
@@ -83,13 +105,15 @@ This keeps Claude tokens focused on reasoning, decisions, and execution. Ollama
| Output | Model | Claude's role |
|--------|-------|---------------|
| Session log narrative (summary, decisions, problems) | qwen3:14b | Review + assemble with factual sections |
| Commit message body | qwen3:14b | Review + execute git commit |
| Syncro comment bodies + billing descriptions | qwen3:14b | Review checklist + post via API |
| Ticket initial issue / description text | qwen3:14b | Review + post |
| Client-facing notes and summaries | qwen3:14b | Review for accuracy |
| Agent phase handoff summaries (explore → plan, plan → implement) | qwen3:14b | Review + include in agent brief |
| Client email drafts | qwen3:14b | Review for accuracy + tone before sending |
| Session log narrative (summary, decisions, problems) | qwen3:14b / qwen3:8b* | Review + assemble with factual sections |
| Commit message body | qwen3:14b / qwen3:8b* | Review + execute git commit |
| Syncro comment bodies + billing descriptions | qwen3:14b / qwen3:8b* | Review checklist + post via API |
| Ticket initial issue / description text | qwen3:14b / qwen3:8b* | Review + post |
| Client-facing notes and summaries | qwen3:14b / qwen3:8b* | Review for accuracy |
| Agent phase handoff summaries (explore → plan, plan → implement) | qwen3:14b / qwen3:8b* | Review + include in agent brief |
| Client email drafts | qwen3:14b / qwen3:8b* | Review for accuracy + tone before sending |
*Use `qwen3:8b` on DESKTOP-0O8A1RL — 4.8x faster due to full VRAM fit. Use `qwen3:14b` everywhere else.
| Ticket / issue classification (priority, type, category) | qwen3.6 | Review + apply label |
| Diff summarization before commit | qwen3.6 | Review + use in commit message |
| Error message categorization (transient / config / bug) | qwen3.6 | Review + act on classification |
@@ -157,12 +181,14 @@ print('warm')
| Task | Model |
|------|-------|
| Session log narrative sections | qwen3:14b |
| Commit message body | qwen3:14b |
| Ticket / client comment drafting | qwen3:14b |
| Summarize logs, diffs, incident notes (no length cap) | qwen3:14b |
| Agent phase handoff summaries | qwen3:14b |
| Client email drafts | qwen3:14b |
| Session log narrative sections | qwen3:8b* / qwen3:14b |
| Commit message body | qwen3:8b* / qwen3:14b |
| Ticket / client comment drafting | qwen3:8b* / qwen3:14b |
| Summarize logs, diffs, incident notes (no length cap) | qwen3:8b* / qwen3:14b |
| Agent phase handoff summaries | qwen3:8b* / qwen3:14b |
| Client email drafts | qwen3:8b* / qwen3:14b |
*On DESKTOP-0O8A1RL only — 4.8x faster (86 tok/s vs 18 tok/s). Use qwen3:14b on all other machines.
| Classify bug type, severity, category, priority | qwen3.6 |
| Extract structured data from text (JSON, fields) | qwen3.6 |
| Diff summarization with strict format / fields | qwen3.6 |

108
tmp_bench_8b.py Normal file
View File

@@ -0,0 +1,108 @@
import urllib.request, json, time
MODELS = ["qwen3:8b", "qwen3:14b", "qwen3.6:latest"]
TESTS = [
("prose", "List 10 common Windows troubleshooting steps an IT technician uses daily. One sentence each, numbered.", 300),
("classification", "Classify this ticket into ONE of: Hardware, Software, Network, Security, User-Error. Reply with category and one sentence only.\n\nTicket: Client says Outlook keeps asking for password every morning. Started after Windows Update last Tuesday.", 80),
("json", 'Extract from this ticket and return ONLY valid JSON with keys: client_name, issue_summary, urgency (low/medium/high).\n\nTicket: Hi, this is Janet from Cascades Dental. Our front desk PC shows a blue screen every time we open Dentrix. Patients arriving at 9am, need this fixed ASAP.', 150),
("summary", "Summarize in exactly 2 bullet points, under 30 words total:\n\nIncident: GuruRMM watchdog failed to restart service after auto-update due to SCM access denied error and a stuck suppression timer. Service was offline 25 minutes. Fixed by adding sc.exe fallback and clearing suppression on failure.", 100),
]
def ask(model, prompt, max_tokens):
payload = {"model": model, "prompt": prompt, "stream": False,
"options": {"num_predict": max_tokens}}
start = time.time()
req = urllib.request.Request("http://localhost:11434/api/generate",
data=json.dumps(payload).encode(), headers={"Content-Type": "application/json"})
r = json.loads(urllib.request.urlopen(req, timeout=300).read())
elapsed = time.time() - start
gen_tok = r.get("eval_count", 0)
gen_ns = r.get("eval_duration", 1)
tps = gen_tok / (gen_ns / 1e9) if gen_ns else 0
raw = r["response"].strip()
if "<think>" in raw and "</think>" in raw:
visible = raw[raw.index("</think>")+8:].strip()
else:
visible = raw
return visible, elapsed, gen_tok, tps
def get_ps():
try:
r = urllib.request.urlopen("http://localhost:11434/api/ps", timeout=5)
d = json.loads(r.read())
models = d.get("models", [])
if models:
m = models[0]
vram = m.get("size_vram", 0) // 1024 // 1024
total = m.get("size", 0) // 1024 // 1024
pct = int(vram / total * 100) if total else 0
return vram, total, pct
except:
pass
return 0, 0, 0
def unload(model):
try:
payload = {"model": model, "keep_alive": 0}
urllib.request.urlopen(urllib.request.Request(
"http://localhost:11434/api/generate",
data=json.dumps(payload).encode(),
headers={"Content-Type": "application/json"}), timeout=10)
except:
pass
time.sleep(2)
results = {} # model -> {test_name -> (tps, elapsed, visible)}
for model in MODELS:
print(f"\n{'='*60}")
print(f"MODEL: {model}")
print('='*60)
model_results = {}
# Warmup load
print(" Loading...", end="", flush=True)
ask(model, "hello", 5)
vram, total, pct = get_ps()
print(f" {vram} MB / {total} MB in VRAM ({pct}%)")
for test_name, prompt, max_tok in TESTS:
visible, elapsed, gen_tok, tps = ask(model, prompt, max_tok)
model_results[test_name] = (tps, elapsed, gen_tok, visible)
hit_limit = " [HIT LIMIT]" if gen_tok >= max_tok else ""
print(f" [{test_name:14}] {tps:5.1f} tok/s {elapsed:5.1f}s {gen_tok} tok{hit_limit}")
if test_name == "json":
clean = visible.strip().strip("```json").strip("```").strip()
try:
json.loads(clean)
print(f" JSON: [OK]")
except:
print(f" JSON: [FAIL] {repr(clean[:60])}")
results[model] = model_results
unload(model)
# Summary table
print(f"\n{'='*60}")
print("THROUGHPUT SUMMARY (tok/s)")
print('='*60)
print(f"{'Task':<16} {'qwen3:8b':>10} {'qwen3:14b':>10} {'qwen3.6':>10}")
print("-"*50)
for test_name, _, _ in TESTS:
row = f"{test_name:<16}"
for model in MODELS:
tps = results[model][test_name][0]
row += f" {tps:>10.1f}"
print(row)
print()
print("Reference (full-GPU machine from OLLAMA.md):")
print(" qwen3:14b ~66 tok/s | qwen3.6 ~32 tok/s")
print()
# VRAM fit analysis
print("VRAM FIT (12 GB available):")
for model, size_gb in [("qwen3:8b", 5.2), ("qwen3:14b", 9.3), ("qwen3.6", 23)]:
fit = "FITS" if size_gb < 10 else "SPLIT"
print(f" {model:<16} {size_gb:>5.1f} GB [{fit}]")

27
tmp_hw_check.ps1 Normal file
View File

@@ -0,0 +1,27 @@
$cpu = Get-WmiObject Win32_Processor | Select-Object -First 1
$ram = Get-WmiObject Win32_ComputerSystem
$gpu = Get-WmiObject Win32_VideoController | Where-Object { $_.AdapterRAM -gt 0 }
$os = Get-WmiObject Win32_OperatingSystem
Write-Output "=== CPU ==="
Write-Output " $($cpu.Name)"
Write-Output " Cores: $($cpu.NumberOfCores) physical / $($cpu.NumberOfLogicalProcessors) logical"
Write-Output " Max MHz: $($cpu.MaxClockSpeed)"
Write-Output "`n=== RAM ==="
$ramGB = [math]::Round($ram.TotalPhysicalMemory / 1GB, 1)
Write-Output " Total: $ramGB GB"
Write-Output "`n=== GPU(s) ==="
foreach ($g in $gpu) {
$vramMB = [math]::Round($g.AdapterRAM / 1MB, 0)
Write-Output " $($g.Name)"
Write-Output " VRAM: $vramMB MB"
Write-Output " Driver: $($g.DriverVersion)"
}
Write-Output "`n=== Storage (system drive) ==="
$disk = Get-WmiObject Win32_LogicalDisk -Filter "DeviceID='C:'"
$freeGB = [math]::Round($disk.FreeSpace / 1GB, 1)
$totalGB = [math]::Round($disk.Size / 1GB, 1)
Write-Output " C: $freeGB GB free / $totalGB GB total"

124
tmp_ollama_bench.py Normal file
View File

@@ -0,0 +1,124 @@
"""
Throughput benchmark for DESKTOP-0O8A1RL.
Tests: current settings, then pulls GPU layer count while running.
"""
import urllib.request, json, time, subprocess, threading, sys
PROMPT = (
"List 10 common Windows troubleshooting steps an IT technician uses daily. "
"One sentence each, numbered."
)
def get_ps():
"""Check which models are loaded and how many GPU layers."""
try:
r = urllib.request.urlopen("http://localhost:11434/api/ps", timeout=5)
return json.loads(r.read())
except:
return {}
def run_gen(model, num_predict=300):
payload = {
"model": model,
"prompt": PROMPT,
"stream": False,
"options": {"num_predict": num_predict}
}
start = time.time()
req = urllib.request.Request(
"http://localhost:11434/api/generate",
data=json.dumps(payload).encode(),
headers={"Content-Type": "application/json"},
)
r = json.loads(urllib.request.urlopen(req, timeout=300).read())
elapsed = time.time() - start
eval_tok = r.get("eval_count", 0)
eval_ns = r.get("eval_duration", 1)
prompt_tok = r.get("prompt_eval_count", 0)
prompt_ns = r.get("prompt_eval_duration", 1)
gen_tps = eval_tok / (eval_ns / 1e9) if eval_ns else 0
prompt_tps = prompt_tok / (prompt_ns / 1e9) if prompt_ns else 0
return {
"elapsed": elapsed,
"eval_tok": eval_tok,
"gen_tps": gen_tps,
"prompt_tok": prompt_tok,
"prompt_tps": prompt_tps,
"response_snippet": r["response"].strip()[:200],
}
def print_result(label, res, ps_info=None):
print(f"\n {label}")
print(f" Generation: {res['gen_tps']:.1f} tok/s ({res['eval_tok']} tokens in {res['elapsed']:.1f}s)")
print(f" Prompt eval: {res['prompt_tps']:.1f} tok/s ({res['prompt_tok']} tokens)")
if ps_info:
for m in ps_info.get("models", []):
layers = m.get("size_vram", 0) / 1024 / 1024
total = m.get("size", 0) / 1024 / 1024
pct = (m.get("size_vram", 0) / m.get("size", 1)) * 100 if m.get("size") else 0
print(f" GPU VRAM used: {layers:.0f} MB / {total:.0f} MB total ({pct:.0f}% in VRAM)")
# ── Check initial Ollama env ────────────────────────────────────────────────
print("=" * 60)
print("DESKTOP-0O8A1RL — Ollama Throughput Benchmark")
print("GPU: RTX 5070 Ti Laptop (4 GB VRAM)")
print("=" * 60)
# ── Test 1: qwen3:14b current settings ─────────────────────────────────────
print("\n[1] Warming up qwen3:14b...")
# warmup
run_gen("qwen3:14b", num_predict=20)
time.sleep(2)
ps = get_ps()
print(f" ps after warmup: {ps}")
print("\n[2] qwen3:14b — current settings (300 tokens)")
res14 = run_gen("qwen3:14b", num_predict=300)
ps14 = get_ps()
print_result("qwen3:14b", res14, ps14)
# Unload
print("\n[3] Unloading model...")
try:
payload = {"model": "qwen3:14b", "keep_alive": 0}
urllib.request.urlopen(urllib.request.Request(
"http://localhost:11434/api/generate",
data=json.dumps(payload).encode(),
headers={"Content-Type": "application/json"}
), timeout=10)
except:
pass
time.sleep(3)
# ── Test 2: qwen3.6 current settings ───────────────────────────────────────
print("\n[4] qwen3.6:latest — current settings (300 tokens)")
print(" (This may take a while to load from disk...)")
run_gen("qwen3.6:latest", num_predict=20) # warmup load
time.sleep(2)
ps36w = get_ps()
print(f" ps after warmup: {ps36w}")
res36 = run_gen("qwen3.6:latest", num_predict=300)
ps36 = get_ps()
print_result("qwen3.6:latest", res36, ps36)
# ── Summary ─────────────────────────────────────────────────────────────────
print("\n" + "=" * 60)
print("SUMMARY")
print("=" * 60)
print(f" qwen3:14b gen: {res14['gen_tps']:.1f} tok/s prompt: {res14['prompt_tps']:.1f} tok/s")
print(f" qwen3.6 gen: {res36['gen_tps']:.1f} tok/s prompt: {res36['prompt_tps']:.1f} tok/s")
print()
print(" Reference (other machine benchmark from OLLAMA.md):")
print(" qwen3:14b ~66 tok/s")
print(" qwen3.6 ~32 tok/s")
print()
# VRAM analysis
for label, model_size_gb in [("qwen3:14b", 8.8), ("qwen3.6", 22)]:
vram_gb = 4.0
pct_gpu = min(vram_gb / model_size_gb * 100, 100)
print(f" {label} ({model_size_gb} GB): {pct_gpu:.0f}% fits in 4 GB VRAM → rest on CPU/RAM")
print()
print(" Diagnosis: Both models exceed 4 GB VRAM → split CPU/GPU or pure CPU")
print(" Expected impact: 2-4x slower than a machine with sufficient VRAM")