@blockrun/clawrouter 0.8.4 → 0.8.5

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/cli.js CHANGED
@@ -1161,7 +1161,7 @@ function route(prompt, systemPrompt, maxOutputTokens, options) {
1161
1161
  const estimatedTokens = Math.ceil(fullText.length / 4);
1162
1162
  const ruleResult = classifyByRules(prompt, systemPrompt, estimatedTokens, config.scoring);
1163
1163
  const agenticScore = ruleResult.agenticScore ?? 0;
1164
- const isAutoAgentic = agenticScore >= 0.6;
1164
+ const isAutoAgentic = agenticScore >= 0.75;
1165
1165
  const isExplicitAgentic = config.overrides.agenticMode ?? false;
1166
1166
  const useAgenticTiers = (isAutoAgentic || isExplicitAgentic) && config.agenticTiers != null;
1167
1167
  const tierConfigs = useAgenticTiers ? config.agenticTiers : config.tiers;