From 4efeb37cc34ba648c03a8eeb565c8bc55de16165 Mon Sep 17 00:00:00 2001 From: Joyce Er Date: Fri, 13 Oct 2023 10:18:48 -0700 Subject: [PATCH] fix: raise chat agent execution timeout (#195575) --- src/vs/workbench/api/common/extHostChatAgents2.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/common/extHostChatAgents2.ts b/src/vs/workbench/api/common/extHostChatAgents2.ts index bd48108cd4a..13a6b7d6b85 100644 --- a/src/vs/workbench/api/common/extHostChatAgents2.ts +++ b/src/vs/workbench/api/common/extHostChatAgents2.ts @@ -63,7 +63,7 @@ export class ExtHostChatAgents2 implements ExtHostChatAgentsShape2 { const commandExecution = new DeferredPromise(); token.onCancellationRequested(() => commandExecution.complete()); - setTimeout(() => commandExecution.complete(), 3 * 1000); + setTimeout(() => commandExecution.complete(), 10 * 1000); this._extHostChatProvider.allowListExtensionWhile(agent.extension.identifier, commandExecution.p); const slashCommand = request.command