feat: display tool call count and turn duration in MessageBubble - #691
Closed
avoidwork wants to merge 2 commits into
Closed
feat: display tool call count and turn duration in MessageBubble#691avoidwork wants to merge 2 commits into
avoidwork wants to merge 2 commits into
Conversation
- Switch from agent.stream() (returns Promise, not async iterable) to agent.streamEvents() which is the correct async iterable API - Fix content extraction: streamEvents v2 chunks are AIMessageChunk objects with content at chunk.content, not chunk.kwargs.content - Count tool calls from tool_call_chunks and tool_calls on message chunks since deepagents doesn't emit on_tool_start/end events - Render tool call display from on_chat_model_end output - Add events rendering layer to MessageBubble with normalized event type labels and deduplicated counts
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.
Summary
startTime(epoch ms) alongsidetime(formatted string) when creating the assistant message. InfinalizeStreaming, computetoolCallCount(counton_tool_startevents) andturnDurationMs(Date.now() - startTime). Pass these to the messageList update.startTimein message data. PasstoolCallCountandturnDurationMsto MessageBubble.toolCallCountandturnDurationMsprops. Render them as🔧 N tools · ⏱ X.Xsfor assistant messages only.