From b09c4f13fea7cfba5b29d6f779c52b14df006ad1 Mon Sep 17 00:00:00 2001 From: lxowalle Date: Fri, 6 Mar 2026 12:32:19 +0800 Subject: [PATCH] Reduce retry wait time to 100ms --- pkg/agent/loop.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/agent/loop.go b/pkg/agent/loop.go index 6a4fbd169..3c03dd957 100644 --- a/pkg/agent/loop.go +++ b/pkg/agent/loop.go @@ -1463,7 +1463,7 @@ func (al *AgentLoop) retryLLMCall( return resp, nil } if attempt < maxRetries-1 { - time.Sleep(time.Duration(attempt+1) * time.Second) + time.Sleep(100 * time.Millisecond) } }