mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-15 09:42:30 +00:00
Add GPT-4 model, disable reverse proxy selection
This commit is contained in:
parent
d236f2ca27
commit
a4c3dcd5c6
2 changed files with 5 additions and 2 deletions
|
|
@ -38,6 +38,7 @@ public class SettingsComponent {
|
|||
new BaseModel[] {
|
||||
BaseModel.CHATGPT,
|
||||
BaseModel.CHATGPT_SNAPSHOT,
|
||||
BaseModel.CHATGPT_4
|
||||
},
|
||||
settings.textCompletionBaseModel);
|
||||
textCompletionBaseModelComboBox = new BaseModelComboBox(
|
||||
|
|
@ -57,6 +58,7 @@ public class SettingsComponent {
|
|||
useChatCompletionRadioButton = new JBRadioButton("Use chat completion", settings.isChatCompletionOptionSelected);
|
||||
useTextCompletionRadioButton = new JBRadioButton("Use text completion", settings.isTextCompletionOptionSelected);
|
||||
useChatGPTRadioButton = new JBRadioButton("Use ChatGPT's unofficial API (unstable)", settings.isChatGPTOptionSelected);
|
||||
useChatGPTRadioButton.setEnabled(false);
|
||||
mainPanel = FormBuilder.createFormBuilder()
|
||||
.addComponent(new TitledSeparator("Integration Preference"))
|
||||
.addVerticalGap(8)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue