Fixed missing argument for 'update parameters'

This commit is contained in:
Tom Kocourek 2023-05-14 11:15:31 -04:00
parent 05dc79739c
commit b5c3b03d90

3
app.py
View File

@ -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:")