From db2fccef5605fce5405707195efce6a5110383df Mon Sep 17 00:00:00 2001 From: Maxim Dolgolyov Date: Fri, 12 Jun 2026 10:11:49 +0300 Subject: [PATCH] =?UTF-8?q?fix(assistant):=20=D1=83=D0=B1=D1=80=D0=B0?= =?UTF-8?q?=D0=BD=20openrouter/free=20=D0=B8=D0=B7=20Kilo=20(=D1=80=D0=B5?= =?UTF-8?q?=D0=B3=D1=80=D0=B5=D1=81=D1=81=20=E2=80=94=20=D0=BB=D1=8C=D1=91?= =?UTF-8?q?=D1=82=20=D1=80=D0=B0=D1=81=D1=81=D1=83=D0=B6=D0=B4=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Полная проверка всех бесплатных моделей Kilo на русском: openrouter/free теперь роутит на reasoning-модель и выводит «мысли вслух» — убран. Надёжное ядро (чисто, без утечки): Owl Alpha, Nemotron 120B/550B, Nex N2 Pro, Laguna XS. kilo-auto/free и stepfun/step-3.7-flash тоже текут — в список не берём. Co-Authored-By: Claude Opus 4.8 (1M context) --- backend/src/controllers/adminController.js | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/controllers/adminController.js b/backend/src/controllers/adminController.js index f542378..3485cdb 100644 --- a/backend/src/controllers/adminController.js +++ b/backend/src/controllers/adminController.js @@ -896,7 +896,6 @@ const KILO_MODELS = [ { id: 'nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free', label: 'Nemotron Nano 30B — быстрая (256K)', ctx: 256000, out: 65536 }, { id: 'poolside/laguna-m.1:free', label: 'Laguna M.1 — быстрая (262K)', ctx: 262144, out: 32768 }, { id: 'poolside/laguna-xs.2:free', label: 'Laguna XS — лёгкая (262K)', ctx: 262144, out: 32768 }, - { id: 'openrouter/free', label: 'Free Router — авто-выбор (быстро)', ctx: 200000, out: null }, ]; function _aset(k) { const r = db.prepare('SELECT value FROM app_settings WHERE key = ?').get(k); return r && r.value != null ? r.value : null; }