@blockrun/clawrouter 0.8.5 → 0.8.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1626,7 +1626,7 @@ function route(prompt, systemPrompt, maxOutputTokens, options) {
1626
1626
  const estimatedTokens = Math.ceil(fullText.length / 4);
1627
1627
  const ruleResult = classifyByRules(prompt, systemPrompt, estimatedTokens, config.scoring);
1628
1628
  const agenticScore = ruleResult.agenticScore ?? 0;
1629
- const isAutoAgentic = agenticScore >= 0.75;
1629
+ const isAutoAgentic = agenticScore >= 0.69;
1630
1630
  const isExplicitAgentic = config.overrides.agenticMode ?? false;
1631
1631
  const useAgenticTiers = (isAutoAgentic || isExplicitAgentic) && config.agenticTiers != null;
1632
1632
  const tierConfigs = useAgenticTiers ? config.agenticTiers : config.tiers;