From 62f87c2e38ebd5d1ee785bb10c76aaef6ffd4223 Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Date: Fri, 18 Apr 2025 19:21:54 -0400 Subject: [PATCH] Use default AnyIO pool size --- backend/open_webui/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/open_webui/config.py b/backend/open_webui/config.py index d1b3c3a14..9e14a4f83 100644 --- a/backend/open_webui/config.py +++ b/backend/open_webui/config.py @@ -1204,7 +1204,7 @@ ENABLE_USER_WEBHOOKS = PersistentConfig( ) # FastAPI / AnyIO settings -THREAD_POOL_SIZE = int(os.getenv("THREAD_POOL_SIZE", "64")) +THREAD_POOL_SIZE = int(os.getenv("THREAD_POOL_SIZE", "0")) def validate_cors_origins(origins):