mirror of
https://github.com/yihong0618/bilingual_book_maker.git
synced 2025-06-02 09:30:24 +00:00
9 lines
208 B
Python
9 lines
208 B
Python
from book_maker.translator.chatgptapi_translator import ChatGPTAPI
|
|
from book_maker.translator.gpt3_translator import GPT3
|
|
|
|
MODEL_DICT = {
|
|
"chatgptapi": ChatGPTAPI,
|
|
"gpt3": GPT3,
|
|
# add more here
|
|
}
|