Reduce retry wait time to 100ms

This commit is contained in:
lxowalle 2026-03-06 12:32:19 +08:00
parent 6f15e8a486
commit b09c4f13fe

View file

@ -1463,7 +1463,7 @@ func (al *AgentLoop) retryLLMCall(
return resp, nil return resp, nil
} }
if attempt < maxRetries-1 { if attempt < maxRetries-1 {
time.Sleep(time.Duration(attempt+1) * time.Second) time.Sleep(100 * time.Millisecond)
} }
} }