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