@rlabs-inc/memory 0.4.6 → 0.4.7
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/package.json +1 -1
- package/src/core/curator.ts +2 -1
package/package.json
CHANGED
package/src/core/curator.ts
CHANGED
|
@@ -640,7 +640,7 @@ This session has ended. Please curate the memories from this conversation accord
|
|
|
640
640
|
|
|
641
641
|
const response = await client.messages.create({
|
|
642
642
|
model: 'claude-sonnet-4-20250514',
|
|
643
|
-
max_tokens:
|
|
643
|
+
max_tokens: 64000,
|
|
644
644
|
system: systemPrompt,
|
|
645
645
|
messages: conversationMessages,
|
|
646
646
|
})
|
|
@@ -705,6 +705,7 @@ This session has ended. Please curate the memories from this conversation accord
|
|
|
705
705
|
env: {
|
|
706
706
|
...process.env,
|
|
707
707
|
MEMORY_CURATOR_ACTIVE: '1', // Prevent recursive hook triggering
|
|
708
|
+
CLAUDE_CODE_MAX_OUTPUT_TOKENS: '64000', // Max output to avoid truncation
|
|
708
709
|
},
|
|
709
710
|
stdout: 'pipe',
|
|
710
711
|
stderr: 'pipe',
|