mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-13 07:02:34 +00:00
Support method name lookup generation (#280)
This commit is contained in:
parent
3d95269836
commit
845c7b4cee
9 changed files with 162 additions and 9 deletions
|
|
@ -22,6 +22,7 @@ public class ConfigurationState implements PersistentStateComponent<Configuratio
|
|||
private double temperature = 0.2;
|
||||
private boolean createNewChatOnEachAction;
|
||||
private boolean ignoreGitCommitTokenLimit;
|
||||
private boolean methodNameGenerationEnabled = true;
|
||||
private Map<String, String> tableData = EditorActionsUtil.DEFAULT_ACTIONS;
|
||||
|
||||
public static ConfigurationState getInstance() {
|
||||
|
|
@ -86,4 +87,12 @@ public class ConfigurationState implements PersistentStateComponent<Configuratio
|
|||
public void setIgnoreGitCommitTokenLimit(boolean ignoreGitCommitTokenLimit) {
|
||||
this.ignoreGitCommitTokenLimit = ignoreGitCommitTokenLimit;
|
||||
}
|
||||
|
||||
public boolean isMethodNameGenerationEnabled() {
|
||||
return methodNameGenerationEnabled;
|
||||
}
|
||||
|
||||
public void setMethodNameGenerationEnabled(boolean methodNameGenerationEnabled) {
|
||||
this.methodNameGenerationEnabled = methodNameGenerationEnabled;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue