mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
14 lines
261 B
Python
14 lines
261 B
Python
from enum import Enum
|
|
|
|
|
|
class LanguageEnum(str, Enum):
|
|
"""
|
|
An enumeration representing supported languages.
|
|
|
|
Members:
|
|
- CN: Represents the Chinese language.
|
|
- EN: Represents the English language.
|
|
"""
|
|
CN = "cn"
|
|
|
|
EN = "en"
|