@botpress/adk-cli 1.6.6 → 1.6.7
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/cli.js +7 -7
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -319610,7 +319610,7 @@ var init_internal = __esm(() => {
|
|
|
319610
319610
|
});
|
|
319611
319611
|
init_define_PACKAGE_VERSIONS = __esm2({
|
|
319612
319612
|
"<define:__PACKAGE_VERSIONS__>"() {
|
|
319613
|
-
define_PACKAGE_VERSIONS_default = { runtime: "1.6.
|
|
319613
|
+
define_PACKAGE_VERSIONS_default = { runtime: "1.6.7", adk: "not-installed", sdk: "4.17.3", llmz: "0.0.27", zai: "2.4.0", cognitive: "0.2.0" };
|
|
319614
319614
|
}
|
|
319615
319615
|
});
|
|
319616
319616
|
init_globalThis = __esm2({
|
|
@@ -354622,7 +354622,7 @@ ${iteration.status.execution_error.stack}`;
|
|
|
354622
354622
|
get zai() {
|
|
354623
354623
|
return new Zai({
|
|
354624
354624
|
client: context.get("cognitive"),
|
|
354625
|
-
modelId: Array.isArray(adk.project.config.defaultModels.
|
|
354625
|
+
modelId: Array.isArray(adk.project.config.defaultModels.zai) ? adk.project.config.defaultModels.zai[0] ?? "auto" : adk.project.config.defaultModels.zai
|
|
354626
354626
|
});
|
|
354627
354627
|
},
|
|
354628
354628
|
get project() {
|
|
@@ -371786,7 +371786,7 @@ class AgentProjectGenerator {
|
|
|
371786
371786
|
deploy: "adk deploy"
|
|
371787
371787
|
},
|
|
371788
371788
|
dependencies: {
|
|
371789
|
-
"@botpress/runtime": "^1.6.
|
|
371789
|
+
"@botpress/runtime": "^1.6.7"
|
|
371790
371790
|
},
|
|
371791
371791
|
devDependencies: {
|
|
371792
371792
|
typescript: "^5.0.0"
|
|
@@ -380993,7 +380993,7 @@ var init_Separator = __esm(async () => {
|
|
|
380993
380993
|
var require_package3 = __commonJS((exports, module) => {
|
|
380994
380994
|
module.exports = {
|
|
380995
380995
|
name: "@botpress/adk",
|
|
380996
|
-
version: "1.6.
|
|
380996
|
+
version: "1.6.7",
|
|
380997
380997
|
description: "Core ADK library for building AI agents on Botpress",
|
|
380998
380998
|
type: "module",
|
|
380999
380999
|
main: "dist/index.js",
|
|
@@ -381040,7 +381040,7 @@ var require_package3 = __commonJS((exports, module) => {
|
|
|
381040
381040
|
"@botpress/cli": "^4.20",
|
|
381041
381041
|
"@botpress/client": "^1.27.0",
|
|
381042
381042
|
"@botpress/cognitive": "^0.2.0",
|
|
381043
|
-
"@botpress/runtime": "^1.6.
|
|
381043
|
+
"@botpress/runtime": "^1.6.7",
|
|
381044
381044
|
"@botpress/sdk": "^4.17.3",
|
|
381045
381045
|
"@bpinternal/yargs-extra": "^0.0.21",
|
|
381046
381046
|
"@parcel/watcher": "^2.5.1",
|
|
@@ -382428,7 +382428,7 @@ function checkRuntimeVersion(agentRoot) {
|
|
|
382428
382428
|
`));
|
|
382429
382429
|
}
|
|
382430
382430
|
}
|
|
382431
|
-
var semver2, EXPECTED_RUNTIME_VERSION = "1.6.
|
|
382431
|
+
var semver2, EXPECTED_RUNTIME_VERSION = "1.6.7";
|
|
382432
382432
|
var init_runtime_version_check = __esm(() => {
|
|
382433
382433
|
init_source();
|
|
382434
382434
|
semver2 = __toESM(require_semver2(), 1);
|
|
@@ -398027,7 +398027,7 @@ if (!checkNodeVersion(true)) {
|
|
|
398027
398027
|
}
|
|
398028
398028
|
var __filename2 = fileURLToPath9(import.meta.url);
|
|
398029
398029
|
var __dirname5 = dirname3(__filename2);
|
|
398030
|
-
var CLI_VERSION = "1.6.
|
|
398030
|
+
var CLI_VERSION = "1.6.7";
|
|
398031
398031
|
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({
|
|
398032
398032
|
formatHelp: () => formatHelp(program, CLI_VERSION)
|
|
398033
398033
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botpress/adk-cli",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.7",
|
|
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.6.
|
|
43
|
+
"@botpress/adk": "^1.6.7",
|
|
44
44
|
"@botpress/cli": "^4.20",
|
|
45
|
-
"@botpress/runtime": "^1.6.
|
|
45
|
+
"@botpress/runtime": "^1.6.7",
|
|
46
46
|
"adm-zip": "^0.5.16",
|
|
47
47
|
"chalk": "^5.4.1",
|
|
48
48
|
"clipboardy": "^4.0.0",
|