From b6b5144ddf4235b059d2250ef1f09e505ac8b0b1 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 3 Dec 2025 10:13:02 +0000 Subject: [PATCH] Verbose: slow tool batch window to 1s --- src/auto-reply/command-reply.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auto-reply/command-reply.ts b/src/auto-reply/command-reply.ts index 5b5063f39..65da82cec 100644 --- a/src/auto-reply/command-reply.ts +++ b/src/auto-reply/command-reply.ts @@ -54,7 +54,7 @@ export type CommandReplyResult = { }; // Debounce window for coalescing successive tool_result messages (ms) -const TOOL_RESULT_DEBOUNCE_MS = 250; +const TOOL_RESULT_DEBOUNCE_MS = 1000; type ToolMessageLike = { name?: string;