Skip to content

Commit

Permalink
v34.92; added support of gpt-3.5-turbo-16k
Browse files Browse the repository at this point in the history
  • Loading branch information
eliranwong committed Jul 1, 2023
1 parent 3be03e3 commit 18bc6a2
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.91
34.92
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.92:
* added support of gpt-3.5-turbo-16k to Bible Chat plugin

Changes in 34.91:
* Added lexiconreverse to api server

Expand Down
8 changes: 4 additions & 4 deletions patches.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1378,7 +1378,6 @@
(34.85, "file", "plugins/chatGPT/000_UBA.py")
(34.86, "file", "util/TextCommandParser.py")
(34.87, "file", "util/checkup.py")
(34.87, "file", "plugins/menu/Bible Chat.py")
(34.87, "file", "util/AGBsubheadings.py")
(34.87, "file", "db/BiblesSqlite.py")
(34.88, "file", "util/RemoteHttpHandler.py")
Expand All @@ -1388,6 +1387,7 @@
(34.90, "file", "util/LocalCliHandler.py")
(34.91, "file", "db/ToolsSqlite.py")
(34.91, "file", "util/RemoteApiHandler.py")
(34.91, "file", "latest_changes.txt")
(34.91, "file", "UniqueBibleAppVersion.txt")
(34.91, "file", "patches.txt")
(34.92, "file", "plugins/menu/Bible Chat.py")
(34.92, "file", "latest_changes.txt")
(34.92, "file", "UniqueBibleAppVersion.txt")
(34.92, "file", "patches.txt")
2 changes: 1 addition & 1 deletion plugins/menu/Bible Chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def __init__(self, parent=None):
self.apiModelBox = QComboBox()
initialIndex = 0
index = 0
for key in ("gpt-3.5-turbo", "gpt-4", "gpt-4-32k"):
for key in ("gpt-3.5-turbo", "gpt-3.5-turbo-16k", "gpt-4", "gpt-4-32k"):
self.apiModelBox.addItem(key)
if key == config.chatGPTApiModel:
initialIndex = index
Expand Down

0 comments on commit 18bc6a2

Please sign in to comment.