create-openclaw-bot 5.6.5 → 5.6.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/cli.js +7 -8
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -191,14 +191,13 @@ function resolveNative9RouterDesktopLaunch() {
|
|
|
191
191
|
};
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
-
function build9RouterSmartRouteSyncScript(dbPath) {
|
|
195
|
-
const safeDbPath = JSON.stringify(dbPath);
|
|
196
|
-
return `function bootstrap() {
|
|
197
|
-
const fs = require('fs');
|
|
198
|
-
const path = require('path');
|
|
199
|
-
const
|
|
200
|
-
const
|
|
201
|
-
const ROUTER='http://localhost:20128';
|
|
194
|
+
function build9RouterSmartRouteSyncScript(dbPath) {
|
|
195
|
+
const safeDbPath = JSON.stringify(dbPath);
|
|
196
|
+
return `function bootstrap() {
|
|
197
|
+
const fs = require('fs');
|
|
198
|
+
const path = require('path');
|
|
199
|
+
const dbPath = ${safeDbPath};
|
|
200
|
+
const ROUTER='http://localhost:20128';
|
|
202
201
|
const MODEL_PRIORITY = {
|
|
203
202
|
openai: ['openai/gpt-4o', 'openai/gpt-4.1'],
|
|
204
203
|
anthropic: ['anthropic/claude-sonnet-4', 'anthropic/claude-haiku-3.5'],
|