agentgui 1.0.724 → 1.0.725
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 +0 -7
package/package.json
CHANGED
package/static/js/client.js
CHANGED
|
@@ -2838,13 +2838,6 @@ class AgentGUIClient {
|
|
|
2838
2838
|
const frag = document.createDocumentFragment();
|
|
2839
2839
|
let userMsgIdx = 0;
|
|
2840
2840
|
|
|
2841
|
-
if (hasMoreChunks && sessionOrder.length > 0) {
|
|
2842
|
-
const firstChunkTime = chunks[0].created_at;
|
|
2843
|
-
while (userMsgIdx < userMessages.length && userMessages[userMsgIdx].created_at < firstChunkTime) {
|
|
2844
|
-
userMsgIdx++;
|
|
2845
|
-
}
|
|
2846
|
-
}
|
|
2847
|
-
|
|
2848
2841
|
sessionOrder.forEach((sessionId) => {
|
|
2849
2842
|
const sessionChunkList = sessionChunks[sessionId];
|
|
2850
2843
|
const sessionStart = sessionChunkList[0].created_at;
|