From 7d8f73afe764a1faea4a7a49ff9b74bd87a9784d Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Wed, 6 Sep 2023 01:33:50 +0200 Subject: [PATCH] fixed --- lollms/paths.py | 9 +++++---- setup.py | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/lollms/paths.py b/lollms/paths.py index 73f57cc..bd1b073 100644 --- a/lollms/paths.py +++ b/lollms/paths.py @@ -124,11 +124,12 @@ class LollmsPaths: ASCIIColors.info("No extensions found in your personal space.\nCloning the extensions zoo") subprocess.run(["git", "clone", extensions_zoo_repo, self.extensions_zoo_path]) - if not self.gptqlora_path.exists(): + # QLora should be installed by the application + #if not self.gptqlora_path.exists(): # Clone the repository to the target path - ASCIIColors.info("No gptqlora found in your personal space.\nCloning the gptqlora repo") - subprocess.run(["git", "clone", gptqlora_repo, self.gptqlora_path]) - subprocess.run(["pip", "install", "-r", "requirements.txt"], cwd=self.gptqlora_path) + #ASCIIColors.info("No gptqlora found in your personal space.\nCloning the gptqlora repo") + #subprocess.run(["git", "clone", gptqlora_repo, self.gptqlora_path]) + #subprocess.run(["pip", "install", "-r", "requirements.txt"], cwd=self.gptqlora_path) def copy_default_config(self): diff --git a/setup.py b/setup.py index 3319b12..6aebb7f 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def get_all_files(path): setuptools.setup( name="lollms", - version="5.2.0", + version="5.2.1", author="Saifeddine ALOUI", author_email="aloui.saifeddine@gmail.com", description="A python library for AI personality definition",