erosolar-cli 1.7.390 → 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,10 +183,10 @@ 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
|
-
// Default to
|
|
187
|
-
const
|
|
188
|
-
streamingEnv === '
|
|
189
|
-
this.batchedOutputMode =
|
|
186
|
+
// Default to live streaming for immediate thought/tool/response visibility; opt out with EROSOLAR_STREAMING_UI=off/false/0/batch/batched
|
|
187
|
+
const streamingDisabled = streamingEnv === 'off' || streamingEnv === 'false' || streamingEnv === '0' ||
|
|
188
|
+
streamingEnv === 'batch' || streamingEnv === 'batched';
|
|
189
|
+
this.batchedOutputMode = streamingDisabled;
|
|
190
190
|
// Alternate screen disabled - use terminal-native mode for proper scrollback and text selection
|
|
191
191
|
this.alternateScreenEnabled = false;
|
|
192
192
|
this.initializeSessionHistory();
|