Remove details from auto when not logged in (#292852)

Remove details from auto when not logged in
This commit is contained in:
Logan Ramos
2026-02-04 10:52:40 -05:00
committed by GitHub
parent a758bafb2f
commit 0895e6ead4
@@ -56,10 +56,9 @@ function modelDelegateToWidgetActionsProvider(delegate: IModelPickerDelegate, te
checked: true,
category: DEFAULT_MODEL_PICKER_CATEGORY,
class: undefined,
description: localize('chat.modelPicker.auto.detail', "Best for your request based on capacity and performance."),
tooltip: localize('chat.modelPicker.auto', "Auto"),
label: localize('chat.modelPicker.auto', "Auto"),
hover: { content: localize('chat.modelPicker.auto.description', "Automatically selects the best model for your task based on context and complexity."), position: pickerOptions.hoverPosition },
hover: { content: localize('chat.modelPicker.auto.description', "Automatically selects the best model for your task based on capacity."), position: pickerOptions.hoverPosition },
run: () => { }
} satisfies IActionWidgetDropdownAction];
}