Upgraded Logo

This commit is contained in:
Saifeddine ALOUI 2023-06-12 17:58:51 +02:00
parent 61a4f15109
commit 6836028bbb
2 changed files with 15 additions and 5 deletions

View File

@ -19,10 +19,21 @@ class MainMenu:
def show_logo(self):
print(f"{ASCIIColors.color_bright_yellow}")
print("█ █ █ █▄ ▄█▄ ▄█ ")
print("█ ▄▀▀▄ █ █ █ ▀ ▀ █ ▄▀▀▄ ")
print("█ █ █ █ █ █ █ ▀▄▄ ")
print("█▄▄▄▄ ▀▄▄▀ █▄▄▄▄▄ █▄▄▄▄ █ █ ▄▄▄▀ ")
print(" ___ ___ ___ ___ ___ ___ ")
print(" /\__\ /\ \ /\__\ /\__\ /\__\ /\ \ ")
print(" /:/ / /::\ \ /:/ / /:/ / /::| | /::\ \ ")
print(" /:/ / /:/\:\ \ /:/ / /:/ / /:|:| | /:/\ \ \ ")
print(" /:/ / /:/ \:\ \ /:/ / /:/ / /:/|:|__|__ _\:\~\ \ \ ")
print(" /:/__/ /:/__/ \:\__\ /:/__/ /:/__/ /:/ |::::\__\ /\ \:\ \ \__\ ")
print(" \:\ \ \:\ \ /:/ / \:\ \ \:\ \ \/__/~~/:/ / \:\ \:\ \/__/ ")
print(" \:\ \ \:\ /:/ / \:\ \ \:\ \ /:/ / \:\ \:\__\ ")
print(" \:\ \ \:\/:/ / \:\ \ \:\ \ /:/ / \:\/:/ / ")
print(" \:\__\ \::/ / \:\__\ \:\__\ /:/ / \::/ / ")
print(" \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ ")
print(f"{ASCIIColors.color_reset}")
print(f"{ASCIIColors.color_red}Version: {ASCIIColors.color_green}{pkg_resources.get_distribution('lollms').version}")
print(f"{ASCIIColors.color_red}By : {ASCIIColors.color_green}ParisNeo")

View File

@ -48,7 +48,6 @@ class LollmsPaths:
if not local_config_path.exists():
shutil.copy(self.default_cfg_path, str(local_config_path))
@staticmethod
def find_paths(force_local=False, custom_default_cfg_path=None):
lollms_path = Path(__file__).parent