def detect_lang(input_str: str) -> str: return "zh-CN" if input_str == "zh" else "en"