@adhdev/daemon-standalone 0.9.82-rc.13 → 0.9.82-rc.15

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/index.js CHANGED
@@ -32005,7 +32005,8 @@ ${lastSnapshot}`;
32005
32005
  }
32006
32006
  }
32007
32007
  };
32008
- function extractFinalSummaryFromMessages(messages, maxChars = 500) {
32008
+ var DEFAULT_FINAL_SUMMARY_MAX_CHARS = 4e3;
32009
+ function extractFinalSummaryFromMessages(messages, maxChars = DEFAULT_FINAL_SUMMARY_MAX_CHARS) {
32009
32010
  if (!Array.isArray(messages) || messages.length === 0) return "";
32010
32011
  for (let i = messages.length - 1; i >= 0; i--) {
32011
32012
  const msg = messages[i];