@caupulican/pi-adaptative 0.80.73 → 0.80.75
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/CHANGELOG.md +28 -0
- package/dist/core/agent-session.d.ts +10 -0
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +42 -6
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/compaction/compaction.d.ts +22 -0
- package/dist/core/compaction/compaction.d.ts.map +1 -1
- package/dist/core/compaction/compaction.js +31 -3
- package/dist/core/compaction/compaction.js.map +1 -1
- package/dist/core/memory/providers/file-store.d.ts.map +1 -1
- package/dist/core/memory/providers/file-store.js +33 -2
- package/dist/core/memory/providers/file-store.js.map +1 -1
- package/dist/core/resource-loader.d.ts +19 -1
- package/dist/core/resource-loader.d.ts.map +1 -1
- package/dist/core/resource-loader.js +69 -5
- package/dist/core/resource-loader.js.map +1 -1
- package/dist/core/settings-manager.d.ts +6 -0
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js +8 -0
- package/dist/core/settings-manager.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts +5 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +41 -12
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/npm-shrinkwrap.json +12 -12
- package/package.json +4 -4
|
@@ -83,7 +83,9 @@ export declare class InteractiveMode {
|
|
|
83
83
|
private loadingAnimation;
|
|
84
84
|
private _nativeReflectionInFlight;
|
|
85
85
|
private _lastNativeReflectionAt;
|
|
86
|
+
private _pendingReflectionText;
|
|
86
87
|
private static readonly NATIVE_REFLECTION_MIN_INTERVAL_MS;
|
|
88
|
+
private static readonly PENDING_REFLECTION_MAX_CHARS;
|
|
87
89
|
private workingMessage;
|
|
88
90
|
private workingVisible;
|
|
89
91
|
private workingIndicatorOptions;
|
|
@@ -455,6 +457,9 @@ export declare class InteractiveMode {
|
|
|
455
457
|
* lets the user pick a balanced/cheaper reflection model without risking an unusable one.
|
|
456
458
|
*/
|
|
457
459
|
private _resolveReflectionModel;
|
|
460
|
+
/** Buffer a debounce-skipped turn's text so its learning is folded into the next pass (bug #29). */
|
|
461
|
+
private _bufferPendingReflection;
|
|
462
|
+
private _drainPendingReflection;
|
|
458
463
|
private maybeRunNativeReflection;
|
|
459
464
|
private maybeStartAutoLearn;
|
|
460
465
|
private maybeStartAutonomyReview;
|