Class Introduction
Defines the language Enum.
Currently, only English (EN) and Chinese (CH) are supported.
- EN: The working language is English.
- CH: The working language is Chinese.
Prototype
from mx_rag.utils import Lang
class Lang(Enum):
EN: str = 'en'
CH: str = 'ch'
Parent topic: Lang