@kb-labs/commit-core 2.117.0 → 2.118.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generator/index.js +1 -1
- package/dist/generator/index.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/generator/index.js
CHANGED
|
@@ -1961,7 +1961,7 @@ async function generateCommitPlan(options) {
|
|
|
1961
1961
|
const { cwd, onProgress } = options;
|
|
1962
1962
|
const logger = useLogger();
|
|
1963
1963
|
const analytics = useAnalytics();
|
|
1964
|
-
const llm = useLLM();
|
|
1964
|
+
const llm = options.llmComplete ? useLLM() : void 0;
|
|
1965
1965
|
const startTime = Date.now();
|
|
1966
1966
|
const gitStatus = await getGitStatus(cwd);
|
|
1967
1967
|
const allFiles = getAllChangedFiles(gitStatus);
|