Fix: enlarge the timeout limits. (#9201)

### What problem does this PR solve?

#9189

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
Kevin Hu
2025-08-04 13:34:34 +08:00
committed by GitHub
parent e9cbf4611d
commit 30e9212db9
2 changed files with 2 additions and 2 deletions

View File

@ -687,7 +687,7 @@ def timeout(seconds: float | int = None, attempts: int = 2, *, exception: Option
async def is_strong_enough(chat_model, embedding_model):
@timeout(30, 2)
@timeout(60, 2)
async def _is_strong_enough():
nonlocal chat_model, embedding_model
if embedding_model: