@caupulican/pi-adaptative 0.81.24 → 0.81.26
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 +10 -0
- package/dist/core/agent-session.d.ts +6 -0
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/model-registry.d.ts +90 -0
- package/dist/core/model-registry.d.ts.map +1 -1
- package/dist/core/model-registry.js +10 -2
- package/dist/core/model-registry.js.map +1 -1
- package/dist/core/session-analytics.d.ts +1 -0
- package/dist/core/session-analytics.d.ts.map +1 -1
- package/dist/core/session-analytics.js +23 -0
- package/dist/core/session-analytics.js.map +1 -1
- package/dist/modes/interactive/report-commands.d.ts.map +1 -1
- package/dist/modes/interactive/report-commands.js +6 -0
- package/dist/modes/interactive/report-commands.js.map +1 -1
- package/docs/usage.md +2 -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 +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [0.81.26] - 2026-07-09
|
|
2
|
+
|
|
3
|
+
### Fixed
|
|
4
|
+
- Fixed dynamically registered provider models to honor configured `modelOverrides`.
|
|
5
|
+
|
|
6
|
+
## [0.81.25] - 2026-07-09
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
- Added session-level compaction gate failure and deterministic gap-fill telemetry to make nonzero gate-failure rates visible in stats and `/session` output.
|
|
10
|
+
|
|
1
11
|
## [0.81.24] - 2026-07-09
|
|
2
12
|
|
|
3
13
|
### Fixed
|
|
@@ -220,6 +220,11 @@ export interface ModelCycleResult {
|
|
|
220
220
|
isScoped: boolean;
|
|
221
221
|
}
|
|
222
222
|
/** Session statistics for /session command */
|
|
223
|
+
export interface CompactionGateStats {
|
|
224
|
+
gateFailures: number;
|
|
225
|
+
deterministicGapFills: number;
|
|
226
|
+
compactionsWithGateFailures: number;
|
|
227
|
+
}
|
|
223
228
|
export interface SessionStats {
|
|
224
229
|
sessionFile: string | undefined;
|
|
225
230
|
sessionId: string;
|
|
@@ -238,6 +243,7 @@ export interface SessionStats {
|
|
|
238
243
|
cost: number;
|
|
239
244
|
contextUsage?: ContextUsage;
|
|
240
245
|
toolArgumentValidation: ToolArgumentValidationStats;
|
|
246
|
+
compactionGates: CompactionGateStats;
|
|
241
247
|
}
|
|
242
248
|
/** customType for spawned-usage roll-up entries (Cost Aggregation, Model A). */
|
|
243
249
|
export declare const SPAWNED_USAGE_CUSTOM_TYPE = "spawned_usage";
|