Conversation
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
This PR upgrades the cost history chart hover detail from a single summary line into a structured per-model breakdown, while keeping the menu’s overall size stable as the pointer moves across days with very different usage patterns.
On
main, the selected day can show its total cost and tokens, but the model-level context is compressed into one secondary text line and the upstream cost pipeline only keeps the top three breakdown entries. That makes busy days harder to understand once spend is split across several models, and it means the chart cannot fully explain where a day’s cost or token volume came from.This change keeps richer per-model breakdown data intact from local scanning through decoding and CLI payload generation, then lets the chart decide how much of that information to render.
Why this approach
What changed
CostHistoryChartMenuViewnow renders a structured detail block beneath the chart:CostUsageDailyReport.ModelBreakdownnow carriestotalTokensin addition to cost.modelBreakdowns.totalTokens, preserving full model breakdowns with token totals in scanner output, and encoding the updated CLI payload.What intentionally did not change
Verification
./Scripts/compile_and_run.shpnpm check