erosolar-cli 2.1.149 → 2.1.150
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.
|
@@ -2037,8 +2037,8 @@ export class InteractiveShell {
|
|
|
2037
2037
|
// Buffer all streaming content - rendered as complete block via onAssistantMessage
|
|
2038
2038
|
// This prevents fragmented display and ensures thinking tags are properly processed
|
|
2039
2039
|
this.captureStreamingThought(contentChunk);
|
|
2040
|
-
// Activity
|
|
2041
|
-
this.renderer?.setActivity('
|
|
2040
|
+
// Activity: show what the model is doing (stable, informative)
|
|
2041
|
+
this.renderer?.setActivity(type === 'reasoning' ? 'Reasoning' : 'Writing');
|
|
2042
2042
|
}
|
|
2043
2043
|
/**
|
|
2044
2044
|
* Process streaming content to extract <thinking> blocks as separate events.
|