@mindstudio-ai/remy 0.1.147 → 0.1.148
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
|
@@ -1721,7 +1721,7 @@ var compactConversationTool = {
|
|
|
1721
1721
|
clearable: false,
|
|
1722
1722
|
definition: {
|
|
1723
1723
|
name: "compactConversation",
|
|
1724
|
-
description: "Compact the conversation history by summarizing older messages into a checkpoint. The summary preserves key decisions, what was built, and the current state of the project, but drops the verbose tool results, diffs, and intermediate steps that are no longer useful.
|
|
1724
|
+
description: "Compact the conversation history by summarizing older messages into a checkpoint. The summary preserves key decisions, what was built, and the current state of the project, but drops the verbose tool results, diffs, and intermediate steps that are no longer useful. Runs in the background.",
|
|
1725
1725
|
inputSchema: {
|
|
1726
1726
|
type: "object",
|
|
1727
1727
|
properties: {}
|
|
@@ -6716,6 +6716,7 @@ ${userMessage}` : header;
|
|
|
6716
6716
|
},
|
|
6717
6717
|
onFinally: () => {
|
|
6718
6718
|
sessionStats.compactionInProgress = false;
|
|
6719
|
+
sessionStats.lastContextSize = 0;
|
|
6719
6720
|
sessionStats.messageCount = state.messages.length;
|
|
6720
6721
|
sessionStats.updatedAt = Date.now();
|
|
6721
6722
|
try {
|
package/dist/index.js
CHANGED
|
@@ -1872,7 +1872,7 @@ var init_compactConversation = __esm({
|
|
|
1872
1872
|
clearable: false,
|
|
1873
1873
|
definition: {
|
|
1874
1874
|
name: "compactConversation",
|
|
1875
|
-
description: "Compact the conversation history by summarizing older messages into a checkpoint. The summary preserves key decisions, what was built, and the current state of the project, but drops the verbose tool results, diffs, and intermediate steps that are no longer useful.
|
|
1875
|
+
description: "Compact the conversation history by summarizing older messages into a checkpoint. The summary preserves key decisions, what was built, and the current state of the project, but drops the verbose tool results, diffs, and intermediate steps that are no longer useful. Runs in the background.",
|
|
1876
1876
|
inputSchema: {
|
|
1877
1877
|
type: "object",
|
|
1878
1878
|
properties: {}
|
|
@@ -7398,6 +7398,7 @@ ${userMessage}` : header;
|
|
|
7398
7398
|
},
|
|
7399
7399
|
onFinally: () => {
|
|
7400
7400
|
sessionStats.compactionInProgress = false;
|
|
7401
|
+
sessionStats.lastContextSize = 0;
|
|
7401
7402
|
sessionStats.messageCount = state.messages.length;
|
|
7402
7403
|
sessionStats.updatedAt = Date.now();
|
|
7403
7404
|
try {
|