agentgui 1.0.600 → 1.0.601
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 +1 -1
- package/static/js/client.js +2 -1
package/package.json
CHANGED
package/static/js/client.js
CHANGED
|
@@ -1355,7 +1355,8 @@ class AgentGUIClient {
|
|
|
1355
1355
|
this.state.currentConversation = null;
|
|
1356
1356
|
await window.conversationManager.loadConversations();
|
|
1357
1357
|
}
|
|
1358
|
-
|
|
1358
|
+
const outputEl = document.getElementById('output');
|
|
1359
|
+
if (outputEl) outputEl.innerHTML = '';
|
|
1359
1360
|
}
|
|
1360
1361
|
|
|
1361
1362
|
isHtmlContent(text) {
|