-
Notifications
You must be signed in to change notification settings - Fork 35k
Open
Description
Noticed how you rely on context keys to drive logic:
private readonly chatSetupTriggerContext = ContextKeyExpr.or( |
A better approach is to use IChatEntitlementService
that has events for entitlement
and sentiment
changes:
entitlement: ChatEntitlement.Available
maps to if the user can sign up for freesentiment.installed
maps to installation matters
Copilot