mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-13 07:02:34 +00:00
feat: display notification on plugin updates
This commit is contained in:
parent
10b090e2d2
commit
1392775940
8 changed files with 125 additions and 4 deletions
|
|
@ -20,6 +20,7 @@ public class ConfigurationState implements PersistentStateComponent<Configuratio
|
|||
private String systemPrompt = COMPLETION_SYSTEM_PROMPT;
|
||||
private int maxTokens = 1000;
|
||||
private double temperature = 0.1;
|
||||
private boolean checkForPluginUpdates = true;
|
||||
private boolean createNewChatOnEachAction;
|
||||
private boolean ignoreGitCommitTokenLimit;
|
||||
private boolean methodNameGenerationEnabled = true;
|
||||
|
|
@ -81,6 +82,14 @@ public class ConfigurationState implements PersistentStateComponent<Configuratio
|
|||
this.tableData = tableData;
|
||||
}
|
||||
|
||||
public boolean isCheckForPluginUpdates() {
|
||||
return checkForPluginUpdates;
|
||||
}
|
||||
|
||||
public void setCheckForPluginUpdates(boolean checkForPluginUpdates) {
|
||||
this.checkForPluginUpdates = checkForPluginUpdates;
|
||||
}
|
||||
|
||||
public boolean isIgnoreGitCommitTokenLimit() {
|
||||
return ignoreGitCommitTokenLimit;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue