auto-git:
[change] main.js
This commit is contained in:
10
main.js
10
main.js
@@ -567,12 +567,12 @@ async function autoCommit(folderPath, message) {
|
|||||||
const threshold = store.get('intelligentCommitThreshold') || 10;
|
const threshold = store.get('intelligentCommitThreshold') || 10;
|
||||||
if (folders[idx].linesChanged >= threshold) {
|
if (folders[idx].linesChanged >= threshold) {
|
||||||
debug('Congratulations! You changed enough lines of code :)');
|
debug('Congratulations! You changed enough lines of code :)');
|
||||||
//folders[idx].linesChanged = 0;
|
folders[idx].linesChanged = 0;
|
||||||
//const cands = folders[idx].llmCandidates;
|
const cands = folders[idx].llmCandidates;
|
||||||
//folders[idx].llmCandidates = [];
|
|
||||||
await runLLMCommitRewrite(folderPath, cands);
|
|
||||||
folders[idx].linesChanged = 0; // !!!!!!!!!!!!!!!!!!!! needs logic to handle several llm runs called at the same time
|
|
||||||
folders[idx].llmCandidates = [];
|
folders[idx].llmCandidates = [];
|
||||||
|
await runLLMCommitRewrite(folderPath, cands);
|
||||||
|
//folders[idx].linesChanged = 0; // !!!!!!!!!!!!!!!!!!!! needs logic to handle several llm runs called at the same time
|
||||||
|
//folders[idx].llmCandidates = [];
|
||||||
store.set('folders', folders);
|
store.set('folders', folders);
|
||||||
}
|
}
|
||||||
store.set('folders', folders);
|
store.set('folders', folders);
|
||||||
|
|||||||
Reference in New Issue
Block a user