@elizaos/core 1.6.3-alpha.7 → 1.6.3-alpha.9
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/node/index.node.js
CHANGED
|
@@ -44975,8 +44975,8 @@ class AgentRuntime {
|
|
|
44975
44975
|
const parentRunId = this.getCurrentRunId();
|
|
44976
44976
|
const runId = this.createRunId();
|
|
44977
44977
|
let actionPlan = null;
|
|
44978
|
+
const thought = responses[0]?.content?.thought || `Executing ${allActions.length} actions: ${allActions.join(", ")}`;
|
|
44978
44979
|
if (hasMultipleActions) {
|
|
44979
|
-
const thought = responses[0]?.content?.thought || `Executing ${allActions.length} actions: ${allActions.join(", ")}`;
|
|
44980
44980
|
actionPlan = {
|
|
44981
44981
|
runId,
|
|
44982
44982
|
totalSteps: allActions.length,
|
|
@@ -45115,7 +45115,7 @@ class AgentRuntime {
|
|
|
45115
45115
|
actionId,
|
|
45116
45116
|
runId,
|
|
45117
45117
|
type: "agent_action",
|
|
45118
|
-
thought
|
|
45118
|
+
thought,
|
|
45119
45119
|
source: message.content?.source
|
|
45120
45120
|
}
|
|
45121
45121
|
});
|
|
@@ -45199,6 +45199,7 @@ class AgentRuntime {
|
|
|
45199
45199
|
actionStatus: statusText,
|
|
45200
45200
|
actionId,
|
|
45201
45201
|
type: "agent_action",
|
|
45202
|
+
thought,
|
|
45202
45203
|
actionResult,
|
|
45203
45204
|
source: message.content?.source
|
|
45204
45205
|
}
|
|
@@ -47749,5 +47750,5 @@ export {
|
|
|
47749
47750
|
AgentRuntime
|
|
47750
47751
|
};
|
|
47751
47752
|
|
|
47752
|
-
//# debugId=
|
|
47753
|
+
//# debugId=5B2BFEA477B6A8E064756E2164756E21
|
|
47753
47754
|
//# sourceMappingURL=index.node.js.map
|