This commit is contained in:
Saifeddine ALOUI 2023-09-06 01:33:50 +02:00
parent 3f9c1ea7d0
commit 7d8f73afe7
2 changed files with 6 additions and 5 deletions

View File

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

View File

@ -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",