mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-02-13 02:49:08 +08:00
13 lines
352 B
Python
13 lines
352 B
Python
"""
|
|
Voice service abstract class
|
|
"""
|
|
|
|
|
|
class Translator(object):
|
|
# please use https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes to specify language
|
|
def translate(self, query: str, from_lang: str = "", to_lang: str = "en") -> str:
|
|
"""
|
|
Translate text from one language to another
|
|
"""
|
|
raise NotImplementedError
|