Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
3b8ea55b
Commit
3b8ea55b
authored
Apr 10, 2024
by
Self Denial
Browse files
Add IMAGE_GENERATION_ENABLED env var
With default of `False`.
parent
9e726a32
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
backend/apps/images/main.py
backend/apps/images/main.py
+2
-2
backend/config.py
backend/config.py
+3
-0
No files found.
backend/apps/images/main.py
View file @
3b8ea55b
...
...
@@ -29,7 +29,7 @@ import base64
import
json
import
logging
from
config
import
SRC_LOG_LEVELS
,
CACHE_DIR
,
AUTOMATIC1111_BASE_URL
,
COMFYUI_BASE_URL
from
config
import
SRC_LOG_LEVELS
,
CACHE_DIR
,
IMAGE_GENERATION_ENABLED
,
AUTOMATIC1111_BASE_URL
,
COMFYUI_BASE_URL
log
=
logging
.
getLogger
(
__name__
)
...
...
@@ -48,7 +48,7 @@ app.add_middleware(
)
app
.
state
.
ENGINE
=
""
app
.
state
.
ENABLED
=
False
app
.
state
.
ENABLED
=
IMAGE_GENERATION_ENABLED
app
.
state
.
OPENAI_API_KEY
=
""
app
.
state
.
MODEL
=
""
...
...
backend/config.py
View file @
3b8ea55b
...
...
@@ -452,5 +452,8 @@ WHISPER_MODEL_DIR = os.getenv("WHISPER_MODEL_DIR", f"{CACHE_DIR}/whisper/models"
# Images
####################################
IMAGE_GENERATION_ENABLED
=
(
os
.
environ
.
get
(
"IMAGE_GENERATION_ENABLED"
,
""
).
lower
()
==
"true"
)
AUTOMATIC1111_BASE_URL
=
os
.
getenv
(
"AUTOMATIC1111_BASE_URL"
,
""
)
COMFYUI_BASE_URL
=
os
.
getenv
(
"COMFYUI_BASE_URL"
,
""
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment