feat(traces): Use new transcript in AI trace tabs#119039
Open
obostjancic wants to merge 5 commits into
Open
Conversation
Behind the gen-ai-conversations-redesign flag, the trace AI tab now leads with the redesigned transcript instead of the Timeline/Spans tab, and renders the Seer Explorer-styled transcript (MessagesPanelNew) with the redesigned span detail panel that opens on span selection. The flag-off path is unchanged: Spans first, legacy MessagesPanel. Refs TET-2604
Replaces the copied fixed-width responsive layout (320px/430px hardcoded sizes) with ConversationSplitLayout, which is already used by the legacy path and handles sizing via a resizable split panel. Drops the manual open/close detail state in favour of ConversationSplitLayout's right-panel empty state. Removes the explanatory comments and the now-unused MessagesPanelSkeleton import. Refs TET-2604
Put Timeline tab before Transcript tab(s) and default to Timeline on mount, regardless of the redesign flag. Co-Authored-By: Claude Sonnet 4 <noreply@example.com>
Contributor
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit e09df7f. Configure here.
ConversationSpanDetail already sets flex=1, minHeight=0, and background=primary on its root Stack, so the outer Flex was redundant. Co-Authored-By: Claude Sonnet 4 <noreply@example.com>
…ing state The transcript was still using the old ConversationViewSkeleton. Switch to MessagesPanelSkeleton which mirrors the conversation bubble layout of MessagesPanelNew. Co-Authored-By: Claude Sonnet 4 <noreply@example.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Behind the
gen-ai-conversations-redesignflag, the trace AI tab uses the redesigned transcript and span detail components. The conversation panel rendersMessagesPanelNewon the left and the redesignedConversationSpanDetailon the right, reusing the existingConversationSplitLayoutresizable panel — no hardcoded pixel sizes.Tab order is
[Timeline, Transcript(s)]with Timeline selected by default. The flag-off path is unchanged: Spans first, legacyMessagesPanel.Closes TET-2604