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.
This commit is contained in:
jgor20
2026-01-21 20:52:14 +00:00
parent 2f5babba99
commit 7ed9305b5b

View File

@@ -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
}
}
};