mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-06-22 16:58:59 +00:00
Added personalities manipulation tools
This commit is contained in:
11
api/helpers.py
Normal file
11
api/helpers.py
Normal 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
|
Reference in New Issue
Block a user