Added zoo information

This commit is contained in:
Saifeddine ALOUI 2023-10-22 17:56:54 +02:00
parent 4edeb66516
commit 224042e19d
2 changed files with 13 additions and 3 deletions

View File

@ -22,9 +22,6 @@ class Settings(LollmsApplication):
# get paths
lollms_paths = LollmsPaths.find_paths(force_local=False, tool_prefix="lollms_server_")
ASCIIColors.yellow("------ Lollms Paths ------")
ASCIIColors.info(lollms_paths)
ASCIIColors.yellow("------ ------------ ------")
# Load maoin configuration
config = LOLLMSConfig.autoload(lollms_paths)

View File

@ -88,6 +88,19 @@ class LollmsPaths:
ASCIIColors.red("custom_personalities_path:",end="")
ASCIIColors.yellow(f"{self.custom_personalities_path}")
ASCIIColors.green("-------------------------------------------------------------")
ASCIIColors.green("----------------------Zoo information-----------------------")
ASCIIColors.red("bindings_zoo_path:",end="")
ASCIIColors.yellow(f"{self.bindings_zoo_path}")
ASCIIColors.red("personalities_zoo_path:",end="")
ASCIIColors.yellow(f"{self.personalities_zoo_path}")
ASCIIColors.red("extensions_zoo_path:",end="")
ASCIIColors.yellow(f"{self.extensions_zoo_path}")
ASCIIColors.red("models_zoo_path:",end="")
ASCIIColors.yellow(f"{self.models_zoo_path}")
ASCIIColors.green("-------------------------------------------------------------")
self.create_directories()
self.copy_default_config()