From 16bb10c46301cad20232225fa978db18fff4f1b1 Mon Sep 17 00:00:00 2001 From: DShomin Date: Sun, 4 May 2025 18:18:33 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20parallel=5Fprocess=20=ED=95=A8?= =?UTF-8?q?=EC=88=98=EC=9D=98=20=ED=83=80=EC=9E=85=20=EB=A7=A4=EA=B0=9C?= =?UTF-8?q?=EB=B3=80=EC=88=98=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- llm_utils/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llm_utils/tools.py b/llm_utils/tools.py index 31c2a09..62c22db 100644 --- a/llm_utils/tools.py +++ b/llm_utils/tools.py @@ -11,7 +11,7 @@ R = TypeVar("R") -def parallel_process[T, R]( +def parallel_process( items: Iterable[T], process_fn: Callable[[T], R], max_workers: int = 8,