upgraded code

This commit is contained in:
saloui 2023-06-14 17:12:47 +02:00
parent 633837a2a1
commit e7e1b7cf4b
3 changed files with 7 additions and 5 deletions

View File

@ -210,7 +210,8 @@ class MainMenu:
print(f"{ASCIIColors.color_green}5 -{ASCIIColors.color_reset} Reinstall current Personality")
print(f"{ASCIIColors.color_green}6 -{ASCIIColors.color_reset} Reset all installs")
print(f"{ASCIIColors.color_green}0 -{ASCIIColors.color_reset} Back to app")
print(f"{ASCIIColors.color_green}-1 -{ASCIIColors.color_reset} Exit app")
print(f"{ASCIIColors.color_green}-1 -{ASCIIColors.color_reset} Help")
print(f"{ASCIIColors.color_green}-2 -{ASCIIColors.color_reset} Exit app")
choice = input("Enter your choice: ").strip()
if choice == "1":
self.select_binding()
@ -229,9 +230,10 @@ class MainMenu:
print("Back to main app...")
break
elif choice == "-1":
sys.exit(0)
self.show_commands_list()
elif choice == "-2":
print("Bye")
break
sys.exit(0)
else:
print("Invalid choice! Try again.")

@ -1 +1 @@
Subproject commit 7b97bc6b466c4dce75450b34c33a1c774cd9b966
Subproject commit 9ff3d53ae7a5ffdef2c1305fd425ada7a88a0179

View File

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