@inkeep/agents-cli 0.1.4 → 0.1.5

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/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -15197,7 +15197,7 @@ function startWebApp({ port = 3e3, host = "localhost" }) {
15197
15197
  }
15198
15198
  }
15199
15199
  async function devCommand(options) {
15200
- const { port = 3e3, host = "127.0.0.1" } = options;
15200
+ const { port = 3e3, host = "localhost" } = options;
15201
15201
  console.log(chalk2.blue("Inkeep Dashboard Server"));
15202
15202
  console.log(chalk2.gray(`Starting server on ${host}:${port}`));
15203
15203
  console.log("");
@@ -37498,7 +37498,7 @@ program.command("list-graphs").description("List all available graphs for the cu
37498
37498
  ).action(async (options) => {
37499
37499
  await listGraphsCommand(options);
37500
37500
  });
37501
- program.command("dev").description("Start the Inkeep dashboard server").option("--port <port>", "Port to run the server on", "3000").option("--host <host>", "Host to bind the server to", "127.0.0.1").action(async (options) => {
37501
+ program.command("dev").description("Start the Inkeep dashboard server").option("--port <port>", "Port to run the server on", "3000").option("--host <host>", "Host to bind the server to", "localhost").action(async (options) => {
37502
37502
  await devCommand({
37503
37503
  port: parseInt(options.port, 10),
37504
37504
  host: options.host
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-cli",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Inkeep CLI tool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",