fix: reduce sleep duration in agent loop for improved responsiveness

This commit is contained in:
tong3jie 2026-03-16 14:39:54 +08:00
parent 334c08a27f
commit 4ae9604043

View file

@ -309,7 +309,7 @@ func (al *AgentLoop) Run(ctx context.Context) error {
}
}
default:
time.Sleep(time.Second * 5)
time.Sleep(time.Microsecond * 200)
}
}