From db2466e179bab35cb3934beb91b35b33d3fd744c Mon Sep 17 00:00:00 2001 From: timothycarambat Date: Tue, 8 Jul 2025 14:29:47 -0700 Subject: [PATCH] persistence of the GENERIC_OPENAI_STREAMING_DISABLED setting --- server/utils/helpers/updateENV.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/utils/helpers/updateENV.js b/server/utils/helpers/updateENV.js index f209ef45..f64a042c 100644 --- a/server/utils/helpers/updateENV.js +++ b/server/utils/helpers/updateENV.js @@ -1096,6 +1096,9 @@ function dumpENV() { // Collector API common ENV - allows bypassing URL validation checks "COLLECTOR_ALLOW_ANY_IP", + + // Allow disabling of streaming for generic openai + "GENERIC_OPENAI_STREAMING_DISABLED", ]; // Simple sanitization of each value to prevent ENV injection via newline or quote escaping.