Reduce retry wait time to 100ms
This commit is contained in:
parent
6f15e8a486
commit
b09c4f13fe
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue