@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rlabs-inc/memory",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "description": "AI Memory System - Consciousness continuity through intelligent memory curation and retrieval",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -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: 8192,
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',