mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
Remove OOBABOOGA_FLAGS
This commit is contained in:
parent
ccfc919016
commit
967dda17a0
12
webui.py
12
webui.py
@ -14,17 +14,11 @@ conda_env_path = os.path.join(script_dir, "installer_files", "env")
|
|||||||
# os.environ["HCC_AMDGPU_TARGET"] = 'gfx1030'
|
# os.environ["HCC_AMDGPU_TARGET"] = 'gfx1030'
|
||||||
|
|
||||||
# Command-line flags
|
# Command-line flags
|
||||||
if "OOBABOOGA_FLAGS" in os.environ:
|
cmd_flags_path = os.path.join(script_dir, "CMD_FLAGS.txt")
|
||||||
CMD_FLAGS = os.environ["OOBABOOGA_FLAGS"]
|
if os.path.exists(cmd_flags_path):
|
||||||
print("The following flags have been taken from the environment variable 'OOBABOOGA_FLAGS':")
|
|
||||||
print(CMD_FLAGS)
|
|
||||||
print("To use the CMD_FLAGS Inside webui.py, unset 'OOBABOOGA_FLAGS'.\n")
|
|
||||||
else:
|
|
||||||
cmd_flags_path = os.path.join(script_dir, "CMD_FLAGS.txt")
|
|
||||||
if os.path.exists(cmd_flags_path):
|
|
||||||
with open(cmd_flags_path, 'r') as f:
|
with open(cmd_flags_path, 'r') as f:
|
||||||
CMD_FLAGS = ' '.join(line.strip() for line in f.read().splitlines() if line.strip())
|
CMD_FLAGS = ' '.join(line.strip() for line in f.read().splitlines() if line.strip())
|
||||||
else:
|
else:
|
||||||
CMD_FLAGS = ''
|
CMD_FLAGS = ''
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user