Skip to content
This repository was archived by the owner on Nov 1, 2025. It is now read-only.

Commit 4f6cc7c

Browse files
committed
add sandbox config
1 parent 4134a9c commit 4f6cc7c

File tree

6 files changed

+189
-50
lines changed

6 files changed

+189
-50
lines changed

apps/manage-api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@hono/node-server": "^1.19.5",
13-
"@inkeep/agents-manage-api": "^0.22.0",
13+
"@inkeep/agents-manage-api": "^0.22.1",
1414
"hono": "^4.9.9"
1515
},
1616
"devDependencies": {
@@ -22,4 +22,4 @@
2222
"engines": {
2323
"node": ">=22.x"
2424
}
25-
}
25+
}

apps/run-api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@hono/node-server": "^1.19.5",
13-
"@inkeep/agents-run-api": "^0.22.0",
13+
"@inkeep/agents-run-api": "^0.22.1",
1414
"hono": "^4.9.9"
1515
},
1616
"devDependencies": {
@@ -22,4 +22,4 @@
2222
"engines": {
2323
"node": ">=22.x"
2424
}
25-
}
25+
}

apps/run-api/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { createExecutionApp } from "@inkeep/agents-run-api";
77
import { credentialStores } from "../../shared/credential-stores.js";
88

99
import type { Hono } from "hono";
10+
import { sandboxConfig } from "./sandbox.js";
1011

1112
const inkeep_run_api_port = 3003;
1213

@@ -21,6 +22,7 @@ const app: Hono = createExecutionApp({
2122
},
2223
},
2324
credentialStores,
25+
sandboxConfig,
2426
});
2527

2628
export default app;

apps/run-api/src/sandbox.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import type { SandboxConfig } from "@inkeep/agents-run-api";
2+
3+
export const sandboxConfig: SandboxConfig = {
4+
provider: "native",
5+
runtime: "node22",
6+
timeout: 30000,
7+
vcpus: 1,
8+
};

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313
"postinstall": "node scripts/postinstall.js"
1414
},
1515
"dependencies": {
16-
"@inkeep/agents-core": "^0.22.0",
17-
"@inkeep/agents-manage-ui": "^0.22.0",
18-
"@inkeep/agents-sdk": "^0.22.0",
16+
"@inkeep/agents-core": "^0.22.1",
17+
"@inkeep/agents-manage-ui": "^0.22.1",
18+
"@inkeep/agents-sdk": "^0.22.1",
1919
"@tailwindcss/vite": "^4.1.14",
2020
"dotenv": "^16.0.0",
2121
"tailwindcss": "^4.1.14",
2222
"zod": "^4.1.5"
2323
},
2424
"devDependencies": {
2525
"@biomejs/biome": "^1.8.0",
26-
"@inkeep/agents-cli": "^0.22.0",
26+
"@inkeep/agents-cli": "^0.22.1",
2727
"concurrently": "^8.2.0",
2828
"drizzle-kit": "^0.31.4",
2929
"tsx": "^4.19.0",
@@ -39,4 +39,4 @@
3939
"keytar"
4040
]
4141
}
42-
}
42+
}

0 commit comments

Comments
 (0)