From fbf5f2bb678659102c23826b6cf2adbdec89eac0 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Mon, 11 Aug 2025 13:49:53 +0400 Subject: [PATCH] refac: disable direct connections by default to avoid confusion --- 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 b10dee5b63..43c864ef22 100644 --- a/backend/open_webui/config.py +++ b/backend/open_webui/config.py @@ -871,7 +871,7 @@ CACHE_DIR.mkdir(parents=True, exist_ok=True) ENABLE_DIRECT_CONNECTIONS = PersistentConfig( "ENABLE_DIRECT_CONNECTIONS", "direct.enable", - os.environ.get("ENABLE_DIRECT_CONNECTIONS", "True").lower() == "true", + os.environ.get("ENABLE_DIRECT_CONNECTIONS", "False").lower() == "true", ) ####################################