mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-06-02 00:57:41 +08:00
feat: add baidu translate api
This commit is contained in:
12
translate/translator.py
Normal file
12
translate/translator.py
Normal file
@@ -0,0 +1,12 @@
|
||||
"""
|
||||
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
|
||||
Reference in New Issue
Block a user