Added personalities manipulation tools

This commit is contained in:
saloui
2023-06-08 08:58:02 +02:00
parent 0f8ae835da
commit 4dd666e54c
32 changed files with 241 additions and 99 deletions

11
api/helpers.py Normal file
View File

@ -0,0 +1,11 @@
__author__ = "parisneo"
__github__ = "https://github.com/ParisNeo/lollms-webui"
__copyright__ = "Copyright 2023, "
__license__ = "Apache 2.0"
def compare_lists(list1, list2):
if len(list1) != len(list2):
return False
else:
return list1 == list2