mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
fix: Reduce cache warming sleep time from 20 to 10 seconds
This commit is contained in:
parent
75a51025a0
commit
93e37b60d0
1 changed files with 1 additions and 1 deletions
|
@ -997,7 +997,7 @@ class Coder:
|
||||||
|
|
||||||
def warm_cache_worker():
|
def warm_cache_worker():
|
||||||
for i in range(self.num_cache_warming_pings):
|
for i in range(self.num_cache_warming_pings):
|
||||||
time.sleep(20) # 290 == 4 minutes and 50 seconds
|
time.sleep(10) # 290 == 4 minutes and 50 seconds
|
||||||
try:
|
try:
|
||||||
completion = litellm.completion(
|
completion = litellm.completion(
|
||||||
model=self.main_model.name,
|
model=self.main_model.name,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue