diff --git a/README.md b/README.md index 52741ff..605bb26 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,9 @@ python3 make_book.py --book_name test_books/animal_farm.epub --model gpt4 --use_ # Use a specific OpenAI model alias python3 make_book.py --book_name test_books/animal_farm.epub --model openai --model_list gpt-4-1106-preview --openai_key ${openai_key} +**Note** you can use other `openai like` model in this way +python3 make_book.py --book_name test_books/animal_farm.epub --model openai --model_list yi-34b-chat-0205 --openai_key ${openai_key} --api_base "https://api.lingyiwanwu.com/v1" + # Use a specific list of OpenAI model aliases python3 make_book.py --book_name test_books/animal_farm.epub --model openai --model_list gpt-4-1106-preview,gpt-4-0125-preview,gpt-3.5-turbo-0125 --openai_key ${openai_key} diff --git a/setup.py b/setup.py index c194b2d..25a8484 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ packages = [ setup( name="bbook_maker", description="The bilingual_book_maker is an AI translation tool that uses ChatGPT to assist users in creating multi-language versions of epub/txt files and books.", - version="0.7.9", + version="0.8.0", license="MIT", author="yihong0618", author_email="zouzou0208@gmail.com",