You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/chat/common/chatContextKeys.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ import { RawContextKey } from 'vs/platform/contextkey/common/contextkey';
8
8
9
9
exportconstCONTEXT_RESPONSE_HAS_PROVIDER_ID=newRawContextKey<boolean>('chatSessionResponseHasProviderId',false,{type: 'boolean',description: localize('interactiveSessionResponseHasProviderId',"True when the provider has assigned an id to this response.")});
10
10
exportconstCONTEXT_RESPONSE_VOTE=newRawContextKey<string>('chatSessionResponseVote','',{type: 'string',description: localize('interactiveSessionResponseVote',"When the response has been voted up, is set to 'up'. When voted down, is set to 'down'. Otherwise an empty string.")});
11
+
exportconstCONTEXT_RESPONSE_FILTERED=newRawContextKey<boolean>('chatSessionResponseFiltered',false,{type: 'boolean',description: localize('chatResponseFiltered',"True when the chat response was filtered out by the server.")});
11
12
exportconstCONTEXT_CHAT_REQUEST_IN_PROGRESS=newRawContextKey<boolean>('chatSessionRequestInProgress',false,{type: 'boolean',description: localize('interactiveSessionRequestInProgress',"True when the current request is still in progress.")});
12
13
13
14
exportconstCONTEXT_RESPONSE=newRawContextKey<boolean>('chatResponse',false,{type: 'boolean',description: localize('chatResponse',"The chat item is a response.")});
0 commit comments