@botpress/adk-cli 1.5.16 → 1.5.17

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/cli.js +8 -8
  2. package/package.json +3 -3
package/dist/cli.js CHANGED
@@ -316029,7 +316029,7 @@ var init_internal = __esm(() => {
316029
316029
  });
316030
316030
  init_define_PACKAGE_VERSIONS = __esm2({
316031
316031
  "<define:__PACKAGE_VERSIONS__>"() {
316032
- define_PACKAGE_VERSIONS_default = { runtime: "1.3.16", adk: "not-installed", sdk: "4.17.3", llmz: "0.0.27", zai: "2.1.20", cognitive: "0.1.50" };
316032
+ define_PACKAGE_VERSIONS_default = { runtime: "1.3.17", adk: "not-installed", sdk: "4.17.3", llmz: "0.0.27", zai: "2.1.20", cognitive: "0.1.50" };
316033
316033
  }
316034
316034
  });
316035
316035
  init_globalThis = __esm2({
@@ -350611,7 +350611,7 @@ Always prefer information from the knowledge bases over general knowledge when a
350611
350611
  "autonomous.tool.name": tool.name,
350612
350612
  "autonomous.tool.input": args
350613
350613
  }, async (s2) => {
350614
- const value2 = tool.execute(args, ctx2).catch((e6) => {
350614
+ const value2 = await tool.execute(args, ctx2).catch((e6) => {
350615
350615
  err = e6;
350616
350616
  if (err && err?.constructor && err?.constructor?.name && err?.constructor?.name === "ThinkSignal") {
350617
350617
  s2.setAttributes({
@@ -350667,7 +350667,7 @@ Always prefer information from the knowledge bases over general knowledge when a
350667
350667
  "autonomous.tool.name": tool.name,
350668
350668
  "autonomous.tool.input": args
350669
350669
  }, async (s2) => {
350670
- const value2 = tool.execute(args, ctx2).catch((e6) => {
350670
+ const value2 = await tool.execute(args, ctx2).catch((e6) => {
350671
350671
  err = e6;
350672
350672
  if (err && err?.constructor && err?.constructor?.name && err?.constructor?.name === "ThinkSignal") {
350673
350673
  s2.setAttributes({
@@ -368186,7 +368186,7 @@ class AgentProjectGenerator {
368186
368186
  deploy: "adk deploy"
368187
368187
  },
368188
368188
  dependencies: {
368189
- "@botpress/runtime": "^1.3.16"
368189
+ "@botpress/runtime": "^1.3.17"
368190
368190
  },
368191
368191
  devDependencies: {
368192
368192
  typescript: "^5.0.0"
@@ -377448,7 +377448,7 @@ var init_Separator = __esm(async () => {
377448
377448
  var require_package3 = __commonJS((exports, module) => {
377449
377449
  module.exports = {
377450
377450
  name: "@botpress/adk",
377451
- version: "1.3.16",
377451
+ version: "1.3.17",
377452
377452
  description: "Core ADK library for building AI agents on Botpress",
377453
377453
  type: "module",
377454
377454
  main: "dist/index.js",
@@ -377495,7 +377495,7 @@ var require_package3 = __commonJS((exports, module) => {
377495
377495
  "@botpress/cli": "^4.20",
377496
377496
  "@botpress/client": "^1.27.0",
377497
377497
  "@botpress/cognitive": "^0.1.50",
377498
- "@botpress/runtime": "^1.3.16",
377498
+ "@botpress/runtime": "^1.3.17",
377499
377499
  "@botpress/sdk": "^4.17.3",
377500
377500
  "@bpinternal/yargs-extra": "^0.0.21",
377501
377501
  "@parcel/watcher": "^2.5.1",
@@ -380673,7 +380673,7 @@ function checkRuntimeVersion(agentRoot) {
380673
380673
  `));
380674
380674
  }
380675
380675
  }
380676
- var semver, EXPECTED_RUNTIME_VERSION = "1.3.16";
380676
+ var semver, EXPECTED_RUNTIME_VERSION = "1.3.17";
380677
380677
  var init_runtime_version_check = __esm(() => {
380678
380678
  init_source();
380679
380679
  semver = __toESM(require_semver3(), 1);
@@ -396214,7 +396214,7 @@ function formatHelp(cmd, version) {
396214
396214
  // src/cli.ts
396215
396215
  var __filename2 = fileURLToPath9(import.meta.url);
396216
396216
  var __dirname5 = dirname3(__filename2);
396217
- var CLI_VERSION = "1.5.16";
396217
+ var CLI_VERSION = "1.5.17";
396218
396218
  program.name("adk").description("Botpress Agent Development Kit (ADK) - CLI for building AI agents").version(CLI_VERSION).option("--no-cache", "Disable caching for integration lookups").configureHelp({
396219
396219
  formatHelp: () => formatHelp(program, CLI_VERSION)
396220
396220
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botpress/adk-cli",
3
- "version": "1.5.16",
3
+ "version": "1.5.17",
4
4
  "description": "Command-line interface for the Botpress Agent Development Kit (ADK)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -40,9 +40,9 @@
40
40
  "url": "https://github.com/botpress/adk"
41
41
  },
42
42
  "dependencies": {
43
- "@botpress/adk": "^1.3.16",
43
+ "@botpress/adk": "^1.3.17",
44
44
  "@botpress/cli": "^4.20",
45
- "@botpress/runtime": "^1.3.16",
45
+ "@botpress/runtime": "^1.3.17",
46
46
  "adm-zip": "^0.5.16",
47
47
  "chalk": "^5.4.1",
48
48
  "clipboardy": "^4.0.0",