From 4ae9604043aa792c115b6ccd352855b108cd854e Mon Sep 17 00:00:00 2001 From: tong3jie <14191774+tong3jie@users.noreply.github.com> Date: Mon, 16 Mar 2026 14:39:54 +0800 Subject: [PATCH] fix: reduce sleep duration in agent loop for improved responsiveness --- 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 c2d04aba7..b9b21e3ac 100644 --- a/pkg/agent/loop.go +++ b/pkg/agent/loop.go @@ -309,7 +309,7 @@ func (al *AgentLoop) Run(ctx context.Context) error { } } default: - time.Sleep(time.Second * 5) + time.Sleep(time.Microsecond * 200) } }