292
? localize('askQuestionsTool.invocation.single', 'Asking a question ({0})', headers)
293
: localize('askQuestionsTool.invocation.multiple', 'Asking {0} questions ({1})', questionCount, headers);
295
? localize('askQuestionsTool.invocation.single.past', 'Asked a question ({0})', headers)
296
: localize('askQuestionsTool.invocation.multiple.past', 'Asked {0} questions ({1})', questionCount, headers);
298
>
return {
299
>
invocationMessage: new MarkdownString(message),
300
>
pastTenseMessage: new MarkdownString(pastMessage)
301
>
};
302
>
}
303
304
private getRequest(chatSessionResource: URI | undefined, chatRequestId: string | undefined): { request: IChatRequestModel | undefined; sessionResource: URI | undefined } {