pi-mega-compact 0.20.20 → 0.20.21
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/dist/extensions/dashboard-server/routes-rag-settings-vector-cortex.js +1 -1
- package/dist/src/vector-cortex/controller/policy.js +1 -1
- package/dist/vector-cortex/controller/policy.js +1 -1
- package/extensions/dashboard-server/routes-rag-settings-vector-cortex.ts +1 -1
- package/package.json +1 -1
- package/src/vector-cortex/controller/policy.ts +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* dashboard-server/routes-rag-settings-vector-cortex.ts — Vector Cortex SETTINGS.
|
|
3
3
|
*
|
|
4
|
-
* The VC0A..
|
|
4
|
+
* The VC0A..VC8C chain flag inventory, split out of routes-rag-settings-helpers.ts
|
|
5
5
|
* to keep that file under the 400-line extensions/ soft limit. Every VC flag is a
|
|
6
6
|
* user-visible dashboard toggle (never in EXCLUDED_SETTINGS) per the chain spec,
|
|
7
7
|
* and each carries the long description the Setup panel renders as help text.
|
|
@@ -142,7 +142,7 @@ export function evaluatePolicy(input) {
|
|
|
142
142
|
action: PRESSURE_ACTION[pressure],
|
|
143
143
|
budget,
|
|
144
144
|
pressure,
|
|
145
|
-
reason: reasonFor(pressure,
|
|
145
|
+
reason: reasonFor(pressure, adjusted, budget, bounds),
|
|
146
146
|
ts: input.ts,
|
|
147
147
|
};
|
|
148
148
|
}
|
|
@@ -142,7 +142,7 @@ export function evaluatePolicy(input) {
|
|
|
142
142
|
action: PRESSURE_ACTION[pressure],
|
|
143
143
|
budget,
|
|
144
144
|
pressure,
|
|
145
|
-
reason: reasonFor(pressure,
|
|
145
|
+
reason: reasonFor(pressure, adjusted, budget, bounds),
|
|
146
146
|
ts: input.ts,
|
|
147
147
|
};
|
|
148
148
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* dashboard-server/routes-rag-settings-vector-cortex.ts — Vector Cortex SETTINGS.
|
|
3
3
|
*
|
|
4
|
-
* The VC0A..
|
|
4
|
+
* The VC0A..VC8C chain flag inventory, split out of routes-rag-settings-helpers.ts
|
|
5
5
|
* to keep that file under the 400-line extensions/ soft limit. Every VC flag is a
|
|
6
6
|
* user-visible dashboard toggle (never in EXCLUDED_SETTINGS) per the chain spec,
|
|
7
7
|
* and each carries the long description the Setup panel renders as help text.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-mega-compact",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.21",
|
|
4
4
|
"description": "Layered, local, vector-backed context compressor for pi — supersede/collapse/cluster compaction with deduped inline recall.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
@@ -176,7 +176,7 @@ export function evaluatePolicy(input: PolicyInput): PolicyDecisionV1 {
|
|
|
176
176
|
action: PRESSURE_ACTION[pressure],
|
|
177
177
|
budget,
|
|
178
178
|
pressure,
|
|
179
|
-
reason: reasonFor(pressure,
|
|
179
|
+
reason: reasonFor(pressure, adjusted, budget, bounds),
|
|
180
180
|
ts: input.ts,
|
|
181
181
|
};
|
|
182
182
|
}
|