added "minimal" reasoning option (better for coding)

This commit is contained in:
Game_Time
2025-08-20 11:41:10 +05:00
parent 8129b62083
commit fc9727cb73
5 changed files with 5 additions and 5 deletions

2
gui.py
View File

@@ -298,7 +298,7 @@ class MainWindow(QtWidgets.QMainWindow):
opts.setVerticalSpacing(8)
opts.addWidget(QtWidgets.QLabel("Reasoning Effort"), 0, 0)
self.effort = QtWidgets.QComboBox()
self.effort.addItems(["low", "medium", "high", "none"]) # default medium
self.effort.addItems(["minimal", "low", "medium", "high"]) # default medium
self.effort.setCurrentText("medium")
self.effort.setSizeAdjustPolicy(QtWidgets.QComboBox.AdjustToContents)
self.effort.setMinimumContentsLength(7)