@inkeep/create-agents 0.0.0-dev-20251030152636 → 0.0.0-dev-20251030195812

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.
Files changed (2) hide show
  1. package/dist/utils.js +12 -8
  2. package/package.json +2 -2
package/dist/utils.js CHANGED
@@ -316,14 +316,18 @@ INKEEP_AGENTS_JWT_SIGNING_SECRET=${jwtSigningSecret}
316
316
  }
317
317
  async function createInkeepConfig(config) {
318
318
  const inkeepConfig = `import { defineConfig } from '@inkeep/agents-cli/config';
319
-
320
- const config = defineConfig({
321
- tenantId: "${config.tenantId}",
322
- agentsManageApiUrl: 'http://localhost:3002',
323
- agentsRunApiUrl: 'http://localhost:3003',
324
- });
325
-
326
- export default config;`;
319
+
320
+ const config = defineConfig({
321
+ tenantId: "${config.tenantId}",
322
+ agentsManageApi: {
323
+ url: 'http://localhost:3002',
324
+ },
325
+ agentsRunApi: {
326
+ url: 'http://localhost:3003',
327
+ },
328
+ });
329
+
330
+ export default config;`;
327
331
  await fs.writeFile(`src/inkeep.config.ts`, inkeepConfig);
328
332
  if (config.customProject) {
329
333
  const customIndexContent = `import { project } from '@inkeep/agents-sdk';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/create-agents",
3
- "version": "0.0.0-dev-20251030152636",
3
+ "version": "0.0.0-dev-20251030195812",
4
4
  "description": "Create an Inkeep Agent Framework project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -34,7 +34,7 @@
34
34
  "drizzle-kit": "^0.31.5",
35
35
  "fs-extra": "^11.0.0",
36
36
  "picocolors": "^1.0.0",
37
- "@inkeep/agents-core": "0.0.0-dev-20251030152636"
37
+ "@inkeep/agents-core": "0.0.0-dev-20251030195812"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/degit": "^2.8.6",