diff --git a/src/vs/workbench/contrib/chat/browser/widget/input/modelPickerActionItem.ts b/src/vs/workbench/contrib/chat/browser/widget/input/modelPickerActionItem.ts index adeaa775f49..976c2394691 100644 --- a/src/vs/workbench/contrib/chat/browser/widget/input/modelPickerActionItem.ts +++ b/src/vs/workbench/contrib/chat/browser/widget/input/modelPickerActionItem.ts @@ -100,6 +100,7 @@ function getModelPickerActionBarActionProvider(commandService: ICommandService, const additionalActions: IAction[] = []; if ( chatEntitlementService.entitlement === ChatEntitlement.Free || + chatEntitlementService.entitlement === ChatEntitlement.EDU || chatEntitlementService.entitlement === ChatEntitlement.Pro || chatEntitlementService.entitlement === ChatEntitlement.ProPlus || chatEntitlementService.entitlement === ChatEntitlement.Business || diff --git a/src/vs/workbench/services/chat/common/chatEntitlementService.ts b/src/vs/workbench/services/chat/common/chatEntitlementService.ts index 744de327d90..a4f0ace254a 100644 --- a/src/vs/workbench/services/chat/common/chatEntitlementService.ts +++ b/src/vs/workbench/services/chat/common/chatEntitlementService.ts @@ -80,15 +80,15 @@ export enum ChatEntitlement { /** Signed-up to Free */ Free = 5, /** Signed-up to EDU */ - EDU = 6, + EDU = 10, /** Signed-up to Pro */ - Pro = 7, + Pro = 6, /** Signed-up to Pro Plus */ - ProPlus = 8, + ProPlus = 7, /** Signed-up to Business */ - Business = 9, + Business = 8, /** Signed-up to Enterprise */ - Enterprise = 10, + Enterprise = 9, } export interface IChatSentiment {