diff --git a/lollms/types.py b/lollms/types.py index f4601fa..50e7530 100644 --- a/lollms/types.py +++ b/lollms/types.py @@ -16,6 +16,7 @@ class MSG_TYPE(Enum): MSG_TYPE_STEP_END=6 # A step has been done (the text contains an explanation of the step done by he personality) #Extra - MSG_TYPE_REF=7 # References (in form of [text](path)) - MSG_TYPE_CODE=8 # A javascript code to execute - MSG_TYPE_UI=9 # A vue.js component to show (we need to build some and parse the text to show it) + MSG_TYPE_JSON_INFOS=7 # A JSON output that is useful for summarizing the process of generation used by personalities like chain of thoughts and tree of thooughts + MSG_TYPE_REF=8 # References (in form of [text](path)) + MSG_TYPE_CODE=9 # A javascript code to execute + MSG_TYPE_UI=10 # A vue.js component to show (we need to build some and parse the text to show it) diff --git a/setup.py b/setup.py index b7b4c64..61a8f13 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def get_all_files(path): setuptools.setup( name="lollms", - version="2.1.10", + version="2.1.11", author="Saifeddine ALOUI", author_email="aloui.saifeddine@gmail.com", description="A python library for AI personality definition",