mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-11 20:05:19 +00:00
fix: ENABLE_CHAT_RESPONSE_BASE64_IMAGE_URL_CONVERSION env var
This commit is contained in:
parent
3b5710d0cd
commit
f2ee70cbfc
1 changed files with 2 additions and 1 deletions
|
|
@ -561,7 +561,8 @@ else:
|
|||
####################################
|
||||
|
||||
ENABLE_CHAT_RESPONSE_BASE64_IMAGE_URL_CONVERSION = (
|
||||
os.environ.get("REPLACE_IMAGE_URLS_IN_CHAT_RESPONSE", "False").lower() == "true"
|
||||
os.environ.get("ENABLE_CHAT_RESPONSE_BASE64_IMAGE_URL_CONVERSION", "False").lower()
|
||||
== "true"
|
||||
)
|
||||
|
||||
CHAT_RESPONSE_STREAM_DELTA_CHUNK_SIZE = os.environ.get(
|
||||
|
|
|
|||
Loading…
Reference in a new issue