open-agents-ai 0.103.74 → 0.103.75
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 +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -47232,7 +47232,7 @@ async function startInteractive(config, repoPath) {
|
|
|
47232
47232
|
config = { ...config, dryRun: savedSettings.dryRun };
|
|
47233
47233
|
if (savedSettings.dbPath)
|
|
47234
47234
|
config = { ...config, dbPath: savedSettings.dbPath };
|
|
47235
|
-
let streamEnabled = savedSettings.stream
|
|
47235
|
+
let streamEnabled = savedSettings.stream !== false;
|
|
47236
47236
|
let thinkingEnabled = savedSettings.thinking !== false;
|
|
47237
47237
|
let bruteForceEnabled = savedSettings.bruteforce ?? true;
|
|
47238
47238
|
let currentStyle = PRESET_NAMES.includes(savedSettings.style) ? savedSettings.style : "balanced";
|
package/package.json
CHANGED