@kody-ade/kody-engine-lite 0.1.119 → 0.1.120
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/bin/cli.js +2 -2
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -4414,7 +4414,7 @@ async function executeVerifyWithAutofix(ctx, def) {
|
|
|
4414
4414
|
const defaultRunner = getRunnerForStage(ctx, "taskify");
|
|
4415
4415
|
const diagConfig = getProjectConfig();
|
|
4416
4416
|
const diagEnv = {};
|
|
4417
|
-
if (
|
|
4417
|
+
if (anyStageNeedsProxy(diagConfig)) {
|
|
4418
4418
|
diagEnv.ANTHROPIC_BASE_URL = getLitellmUrl();
|
|
4419
4419
|
}
|
|
4420
4420
|
const diagnosis = await diagnoseFailure(
|
|
@@ -5988,7 +5988,7 @@ async function runResolve(options) {
|
|
|
5988
5988
|
}
|
|
5989
5989
|
const model = resolveModel("mid");
|
|
5990
5990
|
const extraEnv = {};
|
|
5991
|
-
if (
|
|
5991
|
+
if (anyStageNeedsProxy(config)) {
|
|
5992
5992
|
extraEnv.ANTHROPIC_BASE_URL = getLitellmUrl();
|
|
5993
5993
|
}
|
|
5994
5994
|
logger.info(` Running agent to resolve conflicts (model=${model})...`);
|