@dreb/coding-agent 2.63.0 → 2.64.0

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.
@@ -3281,6 +3281,7 @@ export class InteractiveMode {
3281
3281
  : "summarized";
3282
3282
  const selector = new SettingsSelectorComponent({
3283
3283
  autoCompact: this.session.autoCompactionEnabled,
3284
+ continueAfterAutoCompaction: this.settingsManager.getContinueAfterAutoCompaction(),
3284
3285
  showImages: this.settingsManager.getShowImages(),
3285
3286
  autoResizeImages: this.settingsManager.getImageAutoResize(),
3286
3287
  blockImages: this.settingsManager.getBlockImages(),
@@ -3312,6 +3313,9 @@ export class InteractiveMode {
3312
3313
  this.session.setAutoCompactionEnabled(enabled);
3313
3314
  this.footer.setAutoCompactEnabled(enabled);
3314
3315
  },
3316
+ onContinueAfterAutoCompactionChange: (enabled) => {
3317
+ this.settingsManager.setContinueAfterAutoCompaction(enabled);
3318
+ },
3315
3319
  onAutoLoadNestedContextChange: (enabled) => {
3316
3320
  this.settingsManager.setAutoLoadNestedContext(enabled);
3317
3321
  },