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
@@ -114,6 +120,7 @@ export const CTX_INLINE_CHAT_HAS_ACTIVE_REQUEST = new RawContextKey<boolean>('in
114
120
exportconstCTX_INLINE_CHAT_HAS_STASHED_SESSION=newRawContextKey<boolean>('inlineChatHasStashedSession',false,localize('inlineChatHasStashedSession',"Whether interactive editor has kept a session for quick restore"));
115
121
exportconstCTX_INLINE_CHAT_SHOWING_DIFF=newRawContextKey<boolean>('inlineChatDiff',false,localize('inlineChatDiff',"Whether interactive editor show diffs for changes"));
116
122
exportconstCTX_INLINE_CHAT_LAST_RESPONSE_TYPE=newRawContextKey<InlineChatResponseType|undefined>('inlineChatLastResponseType',undefined,localize('inlineChatResponseType',"What type was the last response of the current interactive editor session"));
123
+
exportconstCTX_INLINE_CHAT_RESPONSE_TYPES=newRawContextKey<InlineChateResponseTypes|undefined>('inlineChatResponseTypes',undefined,localize('inlineChatResponseTypes',"What type was the responses have been receieved"));
117
124
exportconstCTX_INLINE_CHAT_DID_EDIT=newRawContextKey<boolean>('inlineChatDidEdit',false,localize('inlineChatDidEdit',"Whether interactive editor did change any code"));
118
125
exportconstCTX_INLINE_CHAT_LAST_FEEDBACK=newRawContextKey<'unhelpful'|'helpful'|''>('inlineChatLastFeedbackKind','',localize('inlineChatLastFeedbackKind',"The last kind of feedback that was provided"));
119
126
exportconstCTX_INLINE_CHAT_DOCUMENT_CHANGED=newRawContextKey<boolean>('inlineChatDocumentChanged',false,localize('inlineChatDocumentChanged',"Whether the document has changed concurrently"));
@@ -123,6 +130,7 @@ export const CTX_INLINE_CHAT_EDIT_MODE = new RawContextKey<EditMode>('config.inl
0 commit comments