mirror of
https://github.com/yihong0618/bilingual_book_maker.git
synced 2025-06-05 19:15:34 +00:00
15 lines
447 B
Python
15 lines
447 B
Python
from book_maker.translator.caiyun_translator import Caiyun
|
|
from book_maker.translator.chatgptapi_translator import ChatGPTAPI
|
|
from book_maker.translator.deepl_translator import DeepL
|
|
from book_maker.translator.google_translator import Google
|
|
from book_maker.translator.gpt3_translator import GPT3
|
|
|
|
MODEL_DICT = {
|
|
"chatgptapi": ChatGPTAPI,
|
|
"gpt3": GPT3,
|
|
"google": Google,
|
|
"caiyun": Caiyun,
|
|
"deepl": DeepL,
|
|
# add more here
|
|
}
|