From 01e585956437e9f321d0e430d7009ef110d45056 Mon Sep 17 00:00:00 2001 From: Maurice Date: Fri, 26 Jun 2026 16:39:23 +0200 Subject: [PATCH] chore(extract): recommend only Qwen3-8B (drop Qwen2.5 from the curated list) Qwen3-8B is the identified default; the prior Qwen2.5 entries are no longer needed in the pull list. --- client/src/components/Admin/AddonManager.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/client/src/components/Admin/AddonManager.tsx b/client/src/components/Admin/AddonManager.tsx index e7696b4b..40052f1e 100644 --- a/client/src/components/Admin/AddonManager.tsx +++ b/client/src/components/Admin/AddonManager.tsx @@ -323,7 +323,6 @@ const DEFAULT_OLLAMA_URL = 'http://localhost:11434/v1' * automatically, so the Qwen3 family works without any tuning. A host only needs one. */ const RECOMMENDED_MODELS: { id: string; label: string; note: string; recommended: boolean; vision: boolean }[] = [ { id: 'qwen3:8b', label: 'Qwen3 — 8B', note: 'Recommended · best extraction quality & speed on CPU (thinking auto-disabled) · Apache-2.0', recommended: true, vision: false }, - { id: 'qwen2.5:7b', label: 'Qwen2.5 — 7B', note: 'Solid fallback · a bit less accurate on tricky/multilingual docs · Apache-2.0', recommended: false, vision: false }, ] /**