@lvce-editor/chat-debug-view 2.8.0 → 2.9.0

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.
@@ -1561,6 +1561,10 @@ const getVisibleEvents = (events, showInputEvents, showResponsePartEvents, showE
1561
1561
  if (!showEventStreamFinishedEvents && event.type === 'event-stream-finished') {
1562
1562
  return false;
1563
1563
  }
1564
+ // hide session creation events by default — not useful in the debug view
1565
+ if (event.type === 'chat-session-created') {
1566
+ return false;
1567
+ }
1564
1568
  return true;
1565
1569
  });
1566
1570
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/chat-debug-view",
3
- "version": "2.8.0",
3
+ "version": "2.9.0",
4
4
  "description": "Chat Debug View Worker",
5
5
  "repository": {
6
6
  "type": "git",