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