@botpress/runtime 1.7.3 → 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 +8 -4
- package/dist/definition.js.map +3 -3
- package/dist/internal.js +6 -2
- package/dist/internal.js.map +3 -3
- package/dist/library.d.ts +2 -0
- package/dist/library.d.ts.map +1 -1
- package/dist/library.js +8 -2
- package/dist/library.js.map +3 -3
- 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 +93 -18
- package/dist/runtime.js.map +3 -3
- package/package.json +1 -1
package/dist/internal.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
|
|
|
@@ -34481,6 +34481,8 @@ ${issues.join("\n")}`;
|
|
|
34481
34481
|
init_define_BUILD();
|
|
34482
34482
|
init_define_PACKAGE_VERSIONS();
|
|
34483
34483
|
import { z as z17 } from "@botpress/sdk";
|
|
34484
|
+
import { Cognitive as Cognitive2 } from "@botpress/cognitive";
|
|
34485
|
+
import { Zai as Zai2 } from "@botpress/zai";
|
|
34484
34486
|
|
|
34485
34487
|
// src/runtime/index.ts
|
|
34486
34488
|
init_define_BUILD();
|
|
@@ -40207,7 +40209,8 @@ import {
|
|
|
40207
40209
|
CitationsManager as _CitationsManager,
|
|
40208
40210
|
ListenExit as _ListenExit,
|
|
40209
40211
|
ThinkExit as _ThinkExit,
|
|
40210
|
-
DefaultExit as _DefaultExit
|
|
40212
|
+
DefaultExit as _DefaultExit,
|
|
40213
|
+
Component as LlmzComponent
|
|
40211
40214
|
} from "llmz";
|
|
40212
40215
|
import { Exit as LlmzExit } from "llmz";
|
|
40213
40216
|
import { ObjectInstance as LlmzObject } from "llmz";
|
|
@@ -40315,6 +40318,7 @@ import { AsyncResource } from "node:async_hooks";
|
|
|
40315
40318
|
var Autonomous;
|
|
40316
40319
|
((Autonomous2) => {
|
|
40317
40320
|
Autonomous2.Tool = LlmzTool;
|
|
40321
|
+
Autonomous2.Component = LlmzComponent;
|
|
40318
40322
|
Autonomous2.Exit = LlmzExit;
|
|
40319
40323
|
Autonomous2.Object = LlmzObject;
|
|
40320
40324
|
Autonomous2.ThinkSignal = _ThinkSignal;
|