@blockrun/clawrouter 0.10.19 → 0.10.20
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 +1 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -53
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/scripts/update.sh +54 -0
package/dist/cli.js
CHANGED
|
@@ -5287,9 +5287,7 @@ async function proxyRequest(req, res, apiBase, payFetch, options, routerOpts, de
|
|
|
5287
5287
|
const tools = parsed.tools;
|
|
5288
5288
|
hasTools = Array.isArray(tools) && tools.length > 0;
|
|
5289
5289
|
if (hasTools && tools) {
|
|
5290
|
-
console.log(
|
|
5291
|
-
`[ClawRouter] Tools detected (${tools.length}), agentic mode via keywords`
|
|
5292
|
-
);
|
|
5290
|
+
console.log(`[ClawRouter] Tools detected (${tools.length}), agentic mode via keywords`);
|
|
5293
5291
|
}
|
|
5294
5292
|
routingDecision = route(prompt, systemPrompt, maxTokens, {
|
|
5295
5293
|
...routerOpts,
|