@caupulican/pi-adaptative 0.81.17 → 0.81.19
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 +13 -0
- package/dist/core/agent-session.d.ts +1 -0
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +28 -1
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/context-pipeline.d.ts +5 -1
- package/dist/core/context-pipeline.d.ts.map +1 -1
- package/dist/core/context-pipeline.js +35 -2
- package/dist/core/context-pipeline.js.map +1 -1
- package/dist/core/models/default-model-suggestions.d.ts.map +1 -1
- package/dist/core/models/default-model-suggestions.js +9 -0
- package/dist/core/models/default-model-suggestions.js.map +1 -1
- package/docs/models.md +1 -0
- 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 +34 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## [0.81.19] - 2026-07-08
|
|
2
|
+
|
|
3
|
+
### Fixed
|
|
4
|
+
- Fixed post-compaction token measurement to keep passive estimates idempotent and use the same max real-usage/estimate basis as the auto-compaction trigger.
|
|
5
|
+
|
|
6
|
+
## [0.81.18] - 2026-07-08
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- Added an exact Bonsai-4B GGUF Q1_0 curated local-model suggestion for one-step managed Ollama setup and curator-role probing.
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Excluded local-only planning docs from npm package file selection even when they exist in a local checkout.
|
|
13
|
+
|
|
1
14
|
## [0.81.17] - 2026-07-08
|
|
2
15
|
|
|
3
16
|
### Added
|
|
@@ -933,6 +933,7 @@ export declare class AgentSession {
|
|
|
933
933
|
private _getAdaptedCompactionSettings;
|
|
934
934
|
private _checkContextWindowUsageWarning;
|
|
935
935
|
private _checkCompaction;
|
|
936
|
+
private _measureLiveContextTokensForCompaction;
|
|
936
937
|
private _runAutoCompaction;
|
|
937
938
|
private _compactWithRetry;
|
|
938
939
|
/**
|