erosolar-cli 1.7.389 → 1.7.391

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.
@@ -183,7 +183,7 @@ export class InteractiveShell {
183
183
  this._enabledPlugins = config.enabledPlugins ?? [];
184
184
  this.version = config.version ?? '0.0.0';
185
185
  const streamingEnv = process.env['EROSOLAR_STREAMING_UI']?.toLowerCase();
186
- // Stream live output by default; set EROSOLAR_STREAMING_UI=off/batch to opt into batched mode
186
+ // Default to live streaming for immediate thought/tool/response visibility; opt out with EROSOLAR_STREAMING_UI=off/false/0/batch/batched
187
187
  const streamingDisabled = streamingEnv === 'off' || streamingEnv === 'false' || streamingEnv === '0' ||
188
188
  streamingEnv === 'batch' || streamingEnv === 'batched';
189
189
  this.batchedOutputMode = streamingDisabled;