agentgui 1.0.558 → 1.0.559

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.558",
3
+ "version": "1.0.559",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -2553,9 +2553,13 @@ class AgentGUIClient {
2553
2553
  const hasMoreChunks = totalChunks && chunks.length < totalChunks;
2554
2554
 
2555
2555
  const clientKnowsStreaming = this.state.streamingConversations.has(conversationId);
2556
- const shouldResumeStreaming = (isActivelyStreaming || clientKnowsStreaming) && latestSession &&
2556
+ const shouldResumeStreaming = latestSession &&
2557
2557
  (latestSession.status === 'active' || latestSession.status === 'pending');
2558
2558
 
2559
+ if (this.ui.messageInput) {
2560
+ this.ui.messageInput.disabled = shouldResumeStreaming;
2561
+ }
2562
+
2559
2563
  const outputEl = document.getElementById('output');
2560
2564
  if (outputEl) {
2561
2565
  const wdInfo = conversation.workingDirectory ? `${this.escapeHtml(conversation.workingDirectory)}` : '';