@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/index.js CHANGED
@@ -2029,7 +2029,7 @@ async function generateCommitPlan(options) {
2029
2029
  const { cwd, onProgress } = options;
2030
2030
  const logger = useLogger();
2031
2031
  const analytics = useAnalytics();
2032
- const llm = useLLM();
2032
+ const llm = options.llmComplete ? useLLM() : void 0;
2033
2033
  const startTime = Date.now();
2034
2034
  const gitStatus = await getGitStatus(cwd);
2035
2035
  const allFiles = getAllChangedFiles(gitStatus);