We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed9a285 commit 80e0239Copy full SHA for 80e0239
src/extension/agents/copilotcli/node/copilotcliSession.ts
@@ -166,6 +166,7 @@ export class CopilotCLISession extends DisposableStore implements ICopilotCLISes
166
const responsePart = processToolExecutionStart(event, this._pendingToolInvocations);
167
if (responsePart instanceof ChatResponseThinkingProgressPart) {
168
this._stream?.push(responsePart);
169
+ this._stream?.push(new ChatResponseThinkingProgressPart('', '', { vscodeReasoningDone: true }));
170
}
171
172
this.logService.trace(`[CopilotCLISession] Start Tool ${event.data.toolName || '<unknown>'}`);
0 commit comments