@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
|
};
|