diff --git a/extensions/copilot/src/extension/conversation/vscode-node/languageModelAccess.ts b/extensions/copilot/src/extension/conversation/vscode-node/languageModelAccess.ts index eb46d63c5508d..c5067933576d3 100644 --- a/extensions/copilot/src/extension/conversation/vscode-node/languageModelAccess.ts +++ b/extensions/copilot/src/extension/conversation/vscode-node/languageModelAccess.ts @@ -266,13 +266,7 @@ export class LanguageModelAccess extends Disposable implements IExtensionContrib if (endpoint.degradationReason) { modelTooltip = endpoint.degradationReason; } else if (endpoint instanceof AutoChatEndpoint) { - if (this._authenticationService.copilotToken?.isNoAuthUser || (endpoint.discountRange.low === 0 && endpoint.discountRange.high === 0)) { - modelTooltip = vscode.l10n.t('Auto selects the best model for your request based on capacity and performance.'); - } else if (endpoint.discountRange.low === endpoint.discountRange.high) { - modelTooltip = vscode.l10n.t('Auto selects the best model for your request based on capacity and performance. Auto is given a {0}% discount.', endpoint.discountRange.low * 100); - } else { - modelTooltip = vscode.l10n.t('Auto selects the best model for your request based on capacity and performance. Auto is given a {0}% to {1}% discount.', endpoint.discountRange.low * 100, endpoint.discountRange.high * 100); - } + modelTooltip = vscode.l10n.t('Auto selects the best model for your request based on capacity and performance.'); } else { modelTooltip = getModelCapabilitiesDescription(endpoint); }