mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-05 08:06:15 +00:00
9 lines
128 B
Python
9 lines
128 B
Python
from enum import Enum
|
|
|
|
|
|
class MessageRoleEnum(str, Enum):
|
|
USER = "user"
|
|
|
|
ASSISTANT = "assistant"
|
|
|
|
SYSTEM = "system"
|