mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-06 08:16:00 +00:00
7 lines
84 B
Python
7 lines
84 B
Python
from enum import Enum
|
|
|
|
|
|
class LanguageEnum(str, Enum):
|
|
CN = "cn"
|
|
|
|
EN = "en"
|