This commit is contained in:
saloui 2023-06-16 16:53:39 +02:00
parent 80fa29718a
commit 03a131a14d
5 changed files with 8 additions and 2 deletions

@ -1 +1 @@
Subproject commit 6ccb39333feec960d20846dd96ef3df798697bc5
Subproject commit 2b82e39786d4742ece751576a5081d943f186397

View File

@ -381,6 +381,8 @@ Participating personalities:
except Exception as ex:
print(ex)
print(f"Couldn't find binding. Please verify your configuration file at {self.configuration_path} or use the next menu to select a valid binding")
print(f"Trying to reinstall binding")
self.binding_class = BindingBuilder().build_binding(self.lollms_paths.bindings_zoo_path, self.config,force_reinstall=True)
self.menu.select_binding()
def load_model(self):

View File

@ -58,6 +58,8 @@ class LoLLMsServer:
except Exception as ex:
print(ex)
print(f"Couldn't find binding. Please verify your configuration file at {self.config.file_path} or use the next menu to select a valid binding")
print(f"Trying to reinstall binding")
self.binding_class = BindingBuilder().build_binding(self.lollms_paths.bindings_zoo_path, self.config,force_reinstall=True)
self.menu.select_binding()
def load_model(self):

View File

@ -153,6 +153,8 @@ Participating personalities:
except Exception as ex:
print(ex)
print(f"Couldn't find binding. Please verify your configuration file at {self.cfg_path} or use the next menu to select a valid binding")
print(f"Trying to reinstall binding")
self.binding_class = BindingBuilder().build_binding(self.lollms_paths.bindings_zoo_path, self.config,force_reinstall=True)
self.menu.select_binding()
def load_model(self):

View File

@ -26,7 +26,7 @@ def get_all_files(path):
setuptools.setup(
name="lollms",
version="1.1.84",
version="1.1.91",
author="Saifeddine ALOUI",
author_email="aloui.saifeddine@gmail.com",
description="A python library for AI personality definition",