CoolFace
Apppublic

ghazaratm/MetaGPT-SoftwareCompany

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
message_enum.py18 linesDownload Raw Back to root
1from enum import Enum2 3 4class QueryAnswerType(Enum):5    Query = "Q"6    Answer = "A"7 8 9class SentenceType(Enum):10    TEXT = "text"11    HIHT = "hint"12    ACTION = "action"13    ERROR = "error"14 15 16class MessageStatus(Enum):17    COMPLETE = "complete"18