From 7ed9305b5bdf69924243faea150ee5c2944bffef Mon Sep 17 00:00:00 2001 From: jgor20 <102353650+jgor20@users.noreply.github.com> Date: Wed, 21 Jan 2026 20:52:14 +0000 Subject: [PATCH] fix: remove unused weight from quota config The quota scoring weight is managed in HybridStrategy's DEFAULT_WEIGHTS, not in the config.quota block. Removed to avoid confusion. --- src/config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/config.js b/src/config.js index 397dc2e..c41df9c 100644 --- a/src/config.js +++ b/src/config.js @@ -38,8 +38,7 @@ const DEFAULT_CONFIG = { quota: { lowThreshold: 0.10, // 10% - reduce score criticalThreshold: 0.05, // 5% - exclude from candidates - staleMs: 300000, // 5 min - max age of quota data to trust - weight: 3 // Scoring weight (same scale as health/tokens) + staleMs: 300000 // 5 min - max age of quota data to trust } } };