Skip to content

Commit

Permalink
v34.9; added support of gpt-3.5-turbo-16k
Browse files Browse the repository at this point in the history
  • Loading branch information
eliranwong committed Jun 19, 2023
1 parent 2da6377 commit 394dd55
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion UniqueBibleAppVersion.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
34.89
34.90
3 changes: 3 additions & 0 deletions latest_changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Changes in 34.90:
* added support of gpt-3.5-turbo-16k

Changes in 34.89:
* updated AGB paragraphs

Expand Down
8 changes: 4 additions & 4 deletions patches.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1344,7 +1344,6 @@
(34.47, "file", "uba.py")
(34.51, "file", "db/BiblesSqlite_nogui.py")
(34.67, "file", "gui/SystemTrayMenu.py")
(34.69, "file", "util/LocalCliHandler.py")
(34.69, "file", "util/ConfigUtil.py")
(34.70, "file", "util/ASVparagraphs.py")
(34.71, "file", "util/AGBparagraphs.py")
Expand Down Expand Up @@ -1388,6 +1387,7 @@
(34.88, "file", "gui/MainWindow.py")
(34.89, "file", "util/AGBparagraphs_expanded.py")
(34.89, "file", "marvelData/AGBTS_data.sqlite")
(34.89, "file", "latest_changes.txt")
(34.89, "file", "patches.txt")
(34.89, "file", "UniqueBibleAppVersion.txt")
(34.90, "file", "util/LocalCliHandler.py")
(34.90, "file", "latest_changes.txt")
(34.90, "file", "patches.txt")
(34.90, "file", "UniqueBibleAppVersion.txt")
2 changes: 1 addition & 1 deletion util/LocalCliHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -2278,7 +2278,7 @@ def startChat():
feature = self.dialogs.getValidOptions(options=features, descriptions=descriptions, title="Bible Chat Options", default=".new")
if feature:
if feature == ".chatgptmodel":
models = ("gpt-3.5-turbo", "gpt-4", "gpt-4-32k")
models = ("gpt-3.5-turbo", "gpt-3.5-turbo-16k", "gpt-4", "gpt-4-32k")
model = self.dialogs.getValidOptions(options=models, title="ChatGPT model", default=config.chatGPTApiModel)
if model:
config.chatGPTApiModel = model
Expand Down

0 comments on commit 394dd55

Please sign in to comment.