@kody-ade/kody-engine 0.4.111 → 0.4.113
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/kody.js +7 -5
- package/package.json +1 -1
package/dist/bin/kody.js
CHANGED
|
@@ -880,7 +880,7 @@ var init_loadPriorArt = __esm({
|
|
|
880
880
|
// package.json
|
|
881
881
|
var package_default = {
|
|
882
882
|
name: "@kody-ade/kody-engine",
|
|
883
|
-
version: "0.4.
|
|
883
|
+
version: "0.4.113",
|
|
884
884
|
description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
885
885
|
license: "MIT",
|
|
886
886
|
type: "module",
|
|
@@ -4754,9 +4754,10 @@ var runnerServe = async (ctx) => {
|
|
|
4754
4754
|
const apiKey = getApiKey2();
|
|
4755
4755
|
const port = Number(process.env.PORT ?? DEFAULT_PORT2);
|
|
4756
4756
|
const server = buildServer2({ apiKey });
|
|
4757
|
+
const host = process.env.RUNNER_HOST ?? "::";
|
|
4757
4758
|
await new Promise((resolve4) => {
|
|
4758
|
-
server.listen(port,
|
|
4759
|
-
process.stdout.write(`[runner-serve] listening on
|
|
4759
|
+
server.listen(port, host, () => {
|
|
4760
|
+
process.stdout.write(`[runner-serve] listening on ${host}:${port} (idle, awaiting job)
|
|
4760
4761
|
`);
|
|
4761
4762
|
resolve4();
|
|
4762
4763
|
});
|
|
@@ -5125,10 +5126,11 @@ function superviseLitellm() {
|
|
|
5125
5126
|
if (process.env.POOL_DISABLE_LITELLM === "1") return null;
|
|
5126
5127
|
const port = String(envInt("LITELLM_PORT", 4e3));
|
|
5127
5128
|
const config = process.env.LITELLM_CONFIG ?? "/app/config.yaml";
|
|
5129
|
+
const host = process.env.LITELLM_HOST ?? "::";
|
|
5128
5130
|
let restarts = 0;
|
|
5129
5131
|
const start = () => {
|
|
5130
|
-
log(`starting litellm child (port ${port})`);
|
|
5131
|
-
const child = spawn4("litellm", ["--config", config, "--port", port, "--host",
|
|
5132
|
+
log(`starting litellm child (port ${port}, host ${host})`);
|
|
5133
|
+
const child = spawn4("litellm", ["--config", config, "--port", port, "--host", host], {
|
|
5132
5134
|
stdio: "inherit"
|
|
5133
5135
|
});
|
|
5134
5136
|
child.on("exit", (code) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.113",
|
|
4
4
|
"description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|