From c98a675b6c89d3d334aa8c7636431527040f9ff4 Mon Sep 17 00:00:00 2001 From: yangdx Date: Sat, 1 Feb 2025 22:07:12 +0800 Subject: [PATCH] remove unused parm --- lightrag/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag/utils.py b/lightrag/utils.py index 4f06d718..963b3743 100644 --- a/lightrag/utils.py +++ b/lightrag/utils.py @@ -58,7 +58,7 @@ class EmbeddingFunc: embedding_dim: int max_token_size: int func: callable - concurrent_limit: int = 16 + # concurrent_limit: int = 16 async def __call__(self, *args, **kwargs) -> np.ndarray: return await self.func(*args, **kwargs)