This commit is contained in:
Joel
2025-07-08 17:25:40 +08:00
160 changed files with 7071 additions and 550 deletions

View File

@ -21,3 +21,12 @@ class DraftVariableType(StrEnum):
NODE = "node"
SYS = "sys"
CONVERSATION = "conversation"
class MessageStatus(StrEnum):
"""
Message Status Enum
"""
NORMAL = "normal"
ERROR = "error"