@kody-ade/kody-engine-lite 0.1.106 → 0.1.107
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/kody.config.schema.json +10 -0
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -4149,10 +4149,10 @@ async function tryStartLitellm(url, projectDir, generatedConfig) {
|
|
|
4149
4149
|
try {
|
|
4150
4150
|
execFileSync15("which", ["litellm"], { timeout: 3e3, stdio: "pipe" });
|
|
4151
4151
|
cmd = "litellm";
|
|
4152
|
-
args2 = ["--config", configPath, "--port", port
|
|
4152
|
+
args2 = ["--config", configPath, "--port", port];
|
|
4153
4153
|
} catch {
|
|
4154
4154
|
cmd = "python3";
|
|
4155
|
-
args2 = ["-m", "litellm", "--config", configPath, "--port", port
|
|
4155
|
+
args2 = ["-m", "litellm", "--config", configPath, "--port", port];
|
|
4156
4156
|
}
|
|
4157
4157
|
const dotenvPath = path24.join(projectDir, ".env");
|
|
4158
4158
|
const dotenvVars = {};
|
package/kody.config.schema.json
CHANGED
|
@@ -59,6 +59,11 @@
|
|
|
59
59
|
"repo": {
|
|
60
60
|
"type": "string",
|
|
61
61
|
"description": "GitHub repository name (e.g., 'my-repo')"
|
|
62
|
+
},
|
|
63
|
+
"postSummary": {
|
|
64
|
+
"type": "boolean",
|
|
65
|
+
"description": "Post a structured pipeline summary comment on the issue after completion. Default: true in CI, false locally.",
|
|
66
|
+
"default": true
|
|
62
67
|
}
|
|
63
68
|
},
|
|
64
69
|
"additionalProperties": false
|
|
@@ -139,6 +144,11 @@
|
|
|
139
144
|
"review-fix": { "type": "string" }
|
|
140
145
|
},
|
|
141
146
|
"additionalProperties": false
|
|
147
|
+
},
|
|
148
|
+
"escalateOnTimeout": {
|
|
149
|
+
"type": "boolean",
|
|
150
|
+
"description": "Escalate to a stronger model tier when a stage times out and retries. Default: true.",
|
|
151
|
+
"default": true
|
|
142
152
|
}
|
|
143
153
|
},
|
|
144
154
|
"additionalProperties": false
|