We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 969d35e commit 24eebbdCopy full SHA for 24eebbd
src/vs/workbench/contrib/chat/browser/chatSetup.ts
@@ -722,6 +722,10 @@ class ChatSetup {
722
if (this.context.state.entitlement === ChatEntitlement.Unknown) {
723
let alternateProvider: 'off' | 'monochrome' | 'colorful' | 'first' = 'off';
724
if (defaultChat.alternativeProviderId) {
725
+ if (this.configurationService.getValue('chat.setup.signInWithAlternateProvider')) {
726
+ alternateProvider = 'colorful'; // TODO@bpasero remove me soon
727
+ }
728
+
729
switch (variant) {
730
case 'alternate-first':
731
alternateProvider = 'first';
0 commit comments