CompactionSetup typedef

CompactionSetup = ({int compactionTargetChars, int maxCharsToSummarize, int minCharsToCompact, int recentCharsToKeep})

Implementation

typedef CompactionSetup = ({
  int recentCharsToKeep, // verbatim recent context
  int minCharsToCompact, // older content threshold to trigger compaction
  int compactionTargetChars, // target compacted length
  int maxCharsToSummarize, // hard ceiling on one summary request
});