upgraded types

This commit is contained in:
Saifeddine ALOUI 2023-07-01 00:35:47 +02:00
parent 0ad4bb06ba
commit 96bb13ce09
2 changed files with 5 additions and 4 deletions

View File

@ -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)

View File

@ -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",