omp-fabric 1.8.2 → 1.9.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.
- package/CHANGELOG.md +13 -0
- package/dist/chunks/{chunk-2ZEMWIHZ.js → chunk-4GY2E3MW.js} +2 -2
- package/dist/chunks/{chunk-EQSL47QL.js → chunk-FBFVZZH4.js} +1 -1
- package/dist/chunks/{chunk-EQSL47QL.js.map → chunk-FBFVZZH4.js.map} +2 -2
- package/dist/chunks/{chunk-BAM2YKP5.js → chunk-FZB2VE57.js} +3 -3
- package/dist/chunks/{chunk-46LYJKI5.js → chunk-QZNSIHX7.js} +3 -3
- package/dist/chunks/{chunk-JMYHQUJQ.js → chunk-R3EKDHHD.js} +2 -2
- package/dist/chunks/{chunk-4GVGY35I.js → chunk-Z7HQ6FYW.js} +3 -1
- package/dist/chunks/chunk-Z7HQ6FYW.js.map +7 -0
- package/dist/compaction/hook.js +1 -1
- package/dist/compaction/lcm-maintenance.d.ts +2 -0
- package/dist/compaction/lcm-maintenance.d.ts.map +1 -1
- package/dist/compaction/lcm-runtime.d.ts +1 -0
- package/dist/compaction/lcm-runtime.d.ts.map +1 -1
- package/dist/compaction/lcm-runtime.js +4 -1
- package/dist/compaction/lcm-runtime.js.map +2 -2
- package/dist/compaction/projections.d.ts +0 -5
- package/dist/compaction/projections.d.ts.map +1 -1
- package/dist/config.d.ts +1 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/fabric-runtime-state.js +5 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -5
- package/dist/index.js.map +2 -2
- package/dist/residency/host.js +5 -5
- package/dist/residency/omp-entry.js +5 -5
- package/dist/ui/settings.d.ts.map +1 -1
- package/dist/ui/settings.js +122 -1
- package/dist/ui/settings.js.map +2 -2
- package/docs/compaction.md +3 -2
- package/package.json +1 -1
- package/dist/chunks/chunk-4GVGY35I.js.map +0 -7
- package/dist/compaction/qa.d.ts +0 -27
- package/dist/compaction/qa.d.ts.map +0 -1
- /package/dist/chunks/{chunk-2ZEMWIHZ.js.map → chunk-4GY2E3MW.js.map} +0 -0
- /package/dist/chunks/{chunk-BAM2YKP5.js.map → chunk-FZB2VE57.js.map} +0 -0
- /package/dist/chunks/{chunk-46LYJKI5.js.map → chunk-QZNSIHX7.js.map} +0 -0
- /package/dist/chunks/{chunk-JMYHQUJQ.js.map → chunk-R3EKDHHD.js.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.9.0
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- `compaction.lcmModelTimeoutSeconds` bounds one summary call and defaults to 120 seconds, raised from a hardcoded 60. A leaf may now carry 200,000 characters of evidence, which a slower provider could not always summarize inside the old minute, and overrunning it writes a deterministic excerpt while the model is healthy.
|
|
8
|
+
- Every compaction key is editable in `/fabric settings`. Eleven of them, including the maintenance passes, leaf and prompt bounds, model budgets, and the new timeout, were reachable only by hand-editing `fabric.json`. A test now fails when a compaction key has no panel entry.
|
|
9
|
+
|
|
10
|
+
## 1.8.3
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- The compaction line in `/fabric status` read `6/24 model summaries`, which looks like a quota of 24. It was the share of ready nodes the model wrote, and model calls carry no quota. The line now reads `24 nodes (6 by model, 18 excerpt)`.
|
|
15
|
+
|
|
3
16
|
## 1.8.2
|
|
4
17
|
|
|
5
18
|
### Fixed
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
buildThinkingDigest,
|
|
13
13
|
snapshotHandoffSession,
|
|
14
14
|
thinkingTransferPolicy
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-R3EKDHHD.js";
|
|
16
16
|
import {
|
|
17
17
|
isFabricThinking
|
|
18
18
|
} from "./chunk-JSBTB3P6.js";
|
|
@@ -2803,4 +2803,4 @@ export {
|
|
|
2803
2803
|
resolveFabricIdentity,
|
|
2804
2804
|
MainAgentController
|
|
2805
2805
|
};
|
|
2806
|
-
//# sourceMappingURL=chunk-
|
|
2806
|
+
//# sourceMappingURL=chunk-4GY2E3MW.js.map
|