From 564a8c507fffc8b25a056d8930035c63da71fc7b Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Fri, 7 Jul 2023 13:32:11 -0300 Subject: [PATCH] Don't launch chat mode by default --- webui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webui.py b/webui.py index fe92c328..004752a9 100644 --- a/webui.py +++ b/webui.py @@ -10,7 +10,8 @@ conda_env_path = os.path.join(script_dir, "installer_files", "env") # Use this to set your command-line flags. For the full list, see: # https://github.com/oobabooga/text-generation-webui/#starting-the-web-ui -CMD_FLAGS = '--chat' +# Example: CMD_FLAGS = '--chat --listen' +CMD_FLAGS = '' # Allows users to set flags in "OOBABOOGA_FLAGS" environment variable