diff --git a/ui/desktop/src/components/bottom_menu/CostTracker.tsx b/ui/desktop/src/components/bottom_menu/CostTracker.tsx index 5ebf895746c6..f8f17047a22d 100644 --- a/ui/desktop/src/components/bottom_menu/CostTracker.tsx +++ b/ui/desktop/src/components/bottom_menu/CostTracker.tsx @@ -134,22 +134,15 @@ export function CostTracker({ inputTokens = 0, outputTokens = 0, sessionCosts }: !costInfo || (costInfo.input_token_cost === undefined && costInfo.output_token_cost === undefined) ) { - // If it's a known free/local provider, show $0.000000 without "not available" message const freeProviders = ['ollama', 'local', 'localhost']; if (freeProviders.includes(currentProvider.toLowerCase())) { return ( <> - - -
- - 0.0000 -
-
- - {`Local model (${inputTokens.toLocaleString()} input, ${outputTokens.toLocaleString()} output tokens)`} - -
+
+ + {inputTokens.toLocaleString()}↑ {outputTokens.toLocaleString()}↓ + +
);