@botpress/runtime 1.7.4 → 1.7.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.
- package/dist/definition.js +4 -2
- package/dist/definition.js.map +2 -2
- package/dist/internal.js +4 -2
- package/dist/internal.js.map +2 -2
- package/dist/library.js +4 -2
- package/dist/library.js.map +2 -2
- package/dist/runtime/autonomous.d.ts +3 -1
- package/dist/runtime/autonomous.d.ts.map +1 -1
- package/dist/runtime/chat/chat.d.ts +43 -163
- package/dist/runtime/chat/chat.d.ts.map +1 -1
- package/dist/runtime.js +89 -16
- package/dist/runtime.js.map +3 -3
- package/package.json +1 -1
package/dist/library.js
CHANGED
|
@@ -48,7 +48,7 @@ var init_define_BUILD = __esm({
|
|
|
48
48
|
var define_PACKAGE_VERSIONS_default;
|
|
49
49
|
var init_define_PACKAGE_VERSIONS = __esm({
|
|
50
50
|
"<define:__PACKAGE_VERSIONS__>"() {
|
|
51
|
-
define_PACKAGE_VERSIONS_default = { runtime: "1.7.
|
|
51
|
+
define_PACKAGE_VERSIONS_default = { runtime: "1.7.5", adk: "1.7.2", sdk: "4.18.1", llmz: "0.0.27", zai: "2.5.0", cognitive: "0.2.0" };
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
54
|
|
|
@@ -40012,7 +40012,8 @@ import {
|
|
|
40012
40012
|
CitationsManager as _CitationsManager,
|
|
40013
40013
|
ListenExit as _ListenExit,
|
|
40014
40014
|
ThinkExit as _ThinkExit,
|
|
40015
|
-
DefaultExit as _DefaultExit
|
|
40015
|
+
DefaultExit as _DefaultExit,
|
|
40016
|
+
Component as LlmzComponent
|
|
40016
40017
|
} from "llmz";
|
|
40017
40018
|
import { Exit as LlmzExit } from "llmz";
|
|
40018
40019
|
import { ObjectInstance as LlmzObject } from "llmz";
|
|
@@ -40120,6 +40121,7 @@ import { AsyncResource } from "node:async_hooks";
|
|
|
40120
40121
|
var Autonomous;
|
|
40121
40122
|
((Autonomous2) => {
|
|
40122
40123
|
Autonomous2.Tool = LlmzTool;
|
|
40124
|
+
Autonomous2.Component = LlmzComponent;
|
|
40123
40125
|
Autonomous2.Exit = LlmzExit;
|
|
40124
40126
|
Autonomous2.Object = LlmzObject;
|
|
40125
40127
|
Autonomous2.ThinkSignal = _ThinkSignal;
|