You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Token throughput in the VS Code chat is currently opt-in, so generation-rate metadata is absent for new installations even though the UI includes a display control.
This changes the VS Code setting default and all fallback and hydration paths to enabled. An explicitly persisted false value remains authoritative, allowing users to hide the rate from Display settings. Localized descriptions now reflect the enabled default, and focused coverage protects both the default and opt-out behavior.
lgtm — the default flip is coherent across all four paths that can diverge: package.json default (true), the extension message builder fallback in throughput-settings.ts (config.get(..., true)), the webview initial signal in display.tsx (createSignal(true)), and the DisplayTab switch (?? true). An explicitly persisted false in user settings still wins, since the VS Code fallback only applies when the key is unset. All 22 locale descriptions were updated consistently, the changeset is user-facing, and the new unit test follows the established autocomplete-settings-message.test.ts stubbing pattern while exercising the real buildThroughputSettingMessage. No new subscriptions, timers, or processes — no memory-leak surface introduced.
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
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.
Token throughput in the VS Code chat is currently opt-in, so generation-rate metadata is absent for new installations even though the UI includes a display control.
This changes the VS Code setting default and all fallback and hydration paths to enabled. An explicitly persisted false value remains authoritative, allowing users to hide the rate from Display settings. Localized descriptions now reflect the enabled default, and focused coverage protects both the default and opt-out behavior.