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
stream.progress(vscode.l10n.t('Delegating to coding agent'));
89
95
constresult=awaitthis.invokeRemoteAgent(
90
-
prompt,
96
+
promptSummary||prompt,
91
97
[
92
98
this.extractFileReferences(request.references),
93
-
awaitthis.extractHistory(history)
99
+
historySummary||awaitthis.extractHistory(history)
94
100
].join('\n\n').trim(),
95
101
token,
96
102
false,
@@ -171,7 +177,7 @@ export class CopilotRemoteAgentManager extends Disposable {
171
177
172
178
// TODO(jospicer): Use confirmations to guide users
173
179
174
-
constnumber=awaitstartSession(request.prompt,context.history,'chat');// TODO(jospicer): 'All of the chat messages so far in the current chat session. Currently, only chat messages for the current participant are included'
180
+
constnumber=awaitstartSession(request.prompt,context.history,'chat',context.chatSummary);// TODO(jospicer): 'All of the chat messages so far in the current chat session. Currently, only chat messages for the current participant are included'
0 commit comments