Skip to content

Commit 194415e

Browse files
committed
footer clarifies it's showing context usage, not input token usage
1 parent 1684042 commit 194415e

File tree

1 file changed

+1
-1
lines changed
  • packages/tui/internal/components/status

1 file changed

+1
-1
lines changed

packages/tui/internal/components/status/status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func formatTokensAndCost(tokens float32, contextWindow float32, cost float32) st
7171
formattedCost := fmt.Sprintf("$%.2f", cost)
7272
percentage := (float64(tokens) / float64(contextWindow)) * 100
7373

74-
return fmt.Sprintf("Tokens: %s (%d%%), Cost: %s", formattedTokens, int(percentage), formattedCost)
74+
return fmt.Sprintf("Context: %s (%d%%), Cost: %s", formattedTokens, int(percentage), formattedCost)
7575
}
7676

7777
func (m statusComponent) View() string {

0 commit comments

Comments
 (0)