Skip to content

Commit

Permalink
<fix> remove unusable openai model
Browse files Browse the repository at this point in the history
update version to v1.5.2
  • Loading branch information
anonymousException committed Feb 21, 2024
1 parent a428fec commit 1402311
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -481,4 +481,4 @@ For higher-level user , it's recommended to turn up the setting. A suggested con
| RPM(requests per minute) | 200 |
| RPS(requests per second) | 5 |
| TPM(requests token limits) | [rate-limits](https://platform.openai.com/account/rate-limits) |
| model | gpt-4 |
| model | gpt-4-turbo-preview |
2 changes: 1 addition & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -475,4 +475,4 @@ Iknow
| RPM(requests per minute) | 200 |
| RPS(requests per second) | 5 |
| TPM(requests token limits) | [rate-limits](https://platform.openai.com/account/rate-limits) |
| model | gpt-4 |
| model | gpt-4-turbo-preview |
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __init__(self, parent=None):

def init_openai_model_combobox(self):
if self.modelComboBox.count() == 0:
l = ["gpt-3.5-turbo", "gpt-4-turbo-preview", "gpt-4"]
l = ["gpt-3.5-turbo", "gpt-4-turbo-preview"]
for i in l:
self.modelComboBox.addItem(i)

Expand Down
2 changes: 1 addition & 1 deletion src/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def retranslateUi(self, MainWindow):
self.extractBtn.setText(QCoreApplication.translate("MainWindow", u"extract", None))
self.label_8.setText(QCoreApplication.translate("MainWindow", u"tl name", None))
self.tlNameText.setPlaceholderText(QCoreApplication.translate("MainWindow", u"only needs in file(s) mode,if you input the directory , just fill nothing. input the directory name under game\\tl Example: japanese or chinese or german", None))
self.versionLabel.setText(QCoreApplication.translate("MainWindow", u"Version 1.5.1", None))
self.versionLabel.setText(QCoreApplication.translate("MainWindow", u"Version 1.5.2", None))
self.copyrightLabel.setText(QCoreApplication.translate("MainWindow", u"\u00a92024 Last moment,All rights reserved.", None))
self.label_11.setText(QCoreApplication.translate("MainWindow", u"font", None))
self.selectFontText.setPlaceholderText(QCoreApplication.translate("MainWindow", u"input or choose or drag the font which supports the language after translation. Example : DejaVuSans.ttf (ren'py 's default font)", None))
Expand Down
2 changes: 1 addition & 1 deletion src/ui.ui
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@
</rect>
</property>
<property name="text">
<string>Version 1.5.1</string>
<string>Version 1.5.2</string>
</property>
</widget>
<widget class="QLabel" name="copyrightLabel">
Expand Down

0 comments on commit 1402311

Please sign in to comment.