From ff625b3bf60807abfa680ab9f5c0847bbd3c167a Mon Sep 17 00:00:00 2001 From: nof4n <129421732+nof4n@users.noreply.github.com> Date: Sun, 14 May 2023 13:13:05 +0000 Subject: [PATCH 1/2] Fix #188 --- webui.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/webui.sh b/webui.sh index d86d2b25..f1e073a9 100644 --- a/webui.sh +++ b/webui.sh @@ -110,6 +110,7 @@ if ping -q -c 1 google.com >/dev/null 2>&1; then else echo "is created" fi +fi # Activate the virtual environment From b5c3b03d90e5d0dd0e17da7c36febb3394ade795 Mon Sep 17 00:00:00 2001 From: Tom Kocourek Date: Sun, 14 May 2023 11:15:31 -0400 Subject: [PATCH 2/2] Fixed missing argument for 'update parameters' --- app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 6c39d96e..653d261c 100644 --- a/app.py +++ b/app.py @@ -589,7 +589,8 @@ class Gpt4AllWebUI(GPT4AllAPI): save_config(self.config, self.config_file_path) self.process.set_config(self.config) - self.backend = self.process.rebuild_backend() + # Fixed missing argument + self.backend = self.process.rebuild_backend(self.config) print("==============================================") print("Parameters changed to:")