Sfoglia il codice sorgente

refac: disable ENABLE_REALTIME_CHAT_SAVE by default

Timothy Jaeryang Baek 4 mesi fa
parent
commit
44716a4cb2
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      backend/open_webui/env.py

+ 1 - 1
backend/open_webui/env.py

@@ -313,7 +313,7 @@ RESET_CONFIG_ON_START = (
 
 
 
 
 ENABLE_REALTIME_CHAT_SAVE = (
 ENABLE_REALTIME_CHAT_SAVE = (
-    os.environ.get("ENABLE_REALTIME_CHAT_SAVE", "True").lower() == "true"
+    os.environ.get("ENABLE_REALTIME_CHAT_SAVE", "False").lower() == "true"
 )
 )
 
 
 ####################################
 ####################################