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
/** Whether the terminal chat agent has been registered */
62
65
exportconstagentRegistered=newRawContextKey<boolean>(TerminalChatContextKeyStrings.ChatAgentRegistered,false,localize('chatAgentRegisteredContextKey',"Whether the terminal chat agent has been registered."));
63
66
64
-
/** The type of chat response, if any */
67
+
/** The chat response contains at least one code block */
65
68
exportconstresponseContainsCodeBlock=newRawContextKey<boolean>(TerminalChatContextKeyStrings.ChatResponseContainsCodeBlock,false,localize('chatResponseContainsCodeBlockContextKey',"Whether the chat response contains a code block."));
66
69
70
+
/** The chat response contains multiple code blocks */
71
+
exportconstresponseContainsMultipleCodeBlocks=newRawContextKey<boolean>(TerminalChatContextKeyStrings.ChatResponseContainsMultipleCodeBlocks,false,localize('chatResponseContainsMultipleCodeBlocksContextKey',"Whether the chat response contains multiple code blocks."));
72
+
67
73
/** Whether the response supports issue reporting */
68
74
exportconstresponseSupportsIssueReporting=newRawContextKey<boolean>(TerminalChatContextKeyStrings.ChatResponseSupportsIssueReporting,false,localize('chatResponseSupportsIssueReportingContextKey',"Whether the response supports issue reporting"));
0 commit comments