@elizaos/core 1.6.3-alpha.9 → 1.6.3-beta.0
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/browser/index.browser.js +2 -2
- package/dist/browser/index.browser.js.map +6 -5
- package/dist/node/index.node.js +5 -1
- package/dist/node/index.node.js.map +4 -4
- package/dist/runtime.d.ts +2 -1
- package/dist/runtime.d.ts.map +1 -1
- package/dist/types/runtime.d.ts +2 -1
- package/dist/types/runtime.d.ts.map +1 -1
- package/dist/utils/crypto-compat.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/node/index.node.js
CHANGED
|
@@ -45340,6 +45340,10 @@ class AgentRuntime {
|
|
|
45340
45340
|
}
|
|
45341
45341
|
}
|
|
45342
45342
|
}
|
|
45343
|
+
getActionResults(messageId) {
|
|
45344
|
+
const cachedState = this.stateCache?.get(`${messageId}_action_results`);
|
|
45345
|
+
return cachedState?.data?.actionResults || [];
|
|
45346
|
+
}
|
|
45343
45347
|
async evaluate(message, state, didRespond, callback, responses) {
|
|
45344
45348
|
try {
|
|
45345
45349
|
const evaluatorPromises = this.evaluators.map(async (evaluator) => {
|
|
@@ -47750,5 +47754,5 @@ export {
|
|
|
47750
47754
|
AgentRuntime
|
|
47751
47755
|
};
|
|
47752
47756
|
|
|
47753
|
-
//# debugId=
|
|
47757
|
+
//# debugId=9B89E2D616BB564964756E2164756E21
|
|
47754
47758
|
//# sourceMappingURL=index.node.js.map
|