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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. 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 ?? false;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.103.74",
3
+ "version": "0.103.75",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",