@mindstudio-ai/remy 0.1.142 → 0.1.143
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/headless.js +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/headless.js
CHANGED
|
@@ -6131,7 +6131,8 @@ This is an automated message containing the result of a tool call that has been
|
|
|
6131
6131
|
<background_results>
|
|
6132
6132
|
${xmlParts}
|
|
6133
6133
|
</background_results>`;
|
|
6134
|
-
|
|
6134
|
+
const bgRequestId = `bg-${Date.now()}`;
|
|
6135
|
+
handleMessage({ action: "message", text: message }, bgRequestId);
|
|
6135
6136
|
}
|
|
6136
6137
|
const pendingBlockUpdates = [];
|
|
6137
6138
|
function applyPendingBlockUpdates() {
|
package/dist/index.js
CHANGED
|
@@ -6816,7 +6816,8 @@ This is an automated message containing the result of a tool call that has been
|
|
|
6816
6816
|
<background_results>
|
|
6817
6817
|
${xmlParts}
|
|
6818
6818
|
</background_results>`;
|
|
6819
|
-
|
|
6819
|
+
const bgRequestId = `bg-${Date.now()}`;
|
|
6820
|
+
handleMessage({ action: "message", text: message }, bgRequestId);
|
|
6820
6821
|
}
|
|
6821
6822
|
const pendingBlockUpdates = [];
|
|
6822
6823
|
function applyPendingBlockUpdates() {
|