From 9767c26535af1ad2e868f4ccd8f9f6019cc0499f Mon Sep 17 00:00:00 2001 From: Kevin Hu Date: Thu, 17 Jul 2025 18:19:13 +0800 Subject: [PATCH] Fix: wrong parameters. (#8900) ### What problem does this PR solve? ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- api/utils/api_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/utils/api_utils.py b/api/utils/api_utils.py index cf60ea7db..e3a735488 100644 --- a/api/utils/api_utils.py +++ b/api/utils/api_utils.py @@ -684,4 +684,4 @@ async def is_strong_enough(chat_model, embedding_model): # Pressure test for GraphRAG task async with trio.open_nursery() as nursery: for _ in range(12): - nursery.start_soon(_is_strong_enough, chat_model, embedding_model) \ No newline at end of file + nursery.start_soon(_is_strong_enough) \ No newline at end of file