@modusensus/dsh-mneme 0.6.7 → 0.6.9

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.
Files changed (139) hide show
  1. package/.github/workflows/test.yml +32 -0
  2. package/.release-notes-v0.6.9.md +13 -0
  3. package/CHANGELOG.md +89 -0
  4. package/LICENSE +21 -21
  5. package/README.md +219 -463
  6. package/SECURITY.md +544 -0
  7. package/docs/devlog/2026-08-14-dsh-mneme-dev-log.md +247 -0
  8. package/docs/devlog/2026-08-15-dsh-mneme-audit-stress-dev-log.md +145 -0
  9. package/docs/devlog/2026-08-15-dsh-mneme-pipeline-dev-log.md +56 -0
  10. package/docs/devlog/2026-08-15-dsh-mneme-reflection-dev-log.md +77 -0
  11. package/docs/devlog/2026-08-15-dsh-mneme-review-fixes-dev-log.md +64 -0
  12. package/docs/devlog/2026-08-15-dsh-mneme-semantic-dev-log.md +90 -0
  13. package/dsh-mneme/CHANGELOG.md +248 -0
  14. package/dsh-mneme/LICENSE +21 -0
  15. package/dsh-mneme/README.md +465 -0
  16. package/{cordis.patch.yml → dsh-mneme/cordis.patch.yml} +15 -15
  17. package/dsh-mneme/docs/AGENT_MEMORY_RESEARCH.md +183 -0
  18. package/dsh-mneme/docs/ENTITIES.md +245 -0
  19. package/dsh-mneme/docs/LOCAL_MODEL.md +141 -0
  20. package/dsh-mneme/docs/MIGRATION.md +127 -0
  21. package/dsh-mneme/docs/SEMANTIC.md +256 -0
  22. package/dsh-mneme/docs/SLEEP.md +163 -0
  23. package/{lib → dsh-mneme/lib}/api.js +783 -783
  24. package/{lib → dsh-mneme/lib}/client.js +1757 -1757
  25. package/{src → dsh-mneme/lib}/commands.js +64 -64
  26. package/{lib → dsh-mneme/lib}/config.js +298 -288
  27. package/{lib → dsh-mneme/lib}/dream/clustering.js +118 -118
  28. package/{src → dsh-mneme/lib}/dream/decisions.js +488 -439
  29. package/{lib → dsh-mneme/lib}/dream/sleep.js +561 -554
  30. package/{src → dsh-mneme/lib}/dream/tag-extractor.js +156 -156
  31. package/{lib → dsh-mneme/lib}/dream.js +958 -929
  32. package/{src → dsh-mneme/lib}/embedding.js +154 -154
  33. package/{src → dsh-mneme/lib}/entities/extractor.js +242 -242
  34. package/{src → dsh-mneme/lib}/hot-memory.js +53 -53
  35. package/{lib → dsh-mneme/lib}/index.js +361 -361
  36. package/{src → dsh-mneme/lib}/inject.js +208 -208
  37. package/{lib → dsh-mneme/lib}/local-embedder.js +282 -282
  38. package/{lib → dsh-mneme/lib}/mirror.js +170 -170
  39. package/{lib → dsh-mneme/lib}/parser/tag.js +59 -59
  40. package/{lib → dsh-mneme/lib}/parser/wiki-link.js +38 -38
  41. package/{src → dsh-mneme/lib}/quality-filter.js +123 -123
  42. package/{lib → dsh-mneme/lib}/reranker.js +218 -218
  43. package/{lib → dsh-mneme/lib}/search/adaptive.js +22 -22
  44. package/{lib → dsh-mneme/lib}/search/bm25.js +96 -96
  45. package/{src → dsh-mneme/lib}/search/tag-boost.js +61 -61
  46. package/{src → dsh-mneme/lib}/service.js +1726 -1726
  47. package/{lib → dsh-mneme/lib}/settings.js +172 -172
  48. package/{lib → dsh-mneme/lib}/store.js +2238 -2238
  49. package/{lib → dsh-mneme/lib}/summarize.js +236 -236
  50. package/{lib → dsh-mneme/lib}/tools.js +290 -290
  51. package/{lib → dsh-mneme/lib}/vector-index.js +116 -116
  52. package/dsh-mneme/package-lock.json +1936 -0
  53. package/dsh-mneme/package.json +80 -0
  54. package/{scripts → dsh-mneme/scripts}/benchmark-embed.js +201 -201
  55. package/{scripts → dsh-mneme/scripts}/benchmark-recall.js +133 -133
  56. package/{scripts → dsh-mneme/scripts}/benchmark-rerank.js +166 -166
  57. package/{scripts → dsh-mneme/scripts}/e2e-dsh.js +218 -218
  58. package/{scripts → dsh-mneme/scripts}/stress-dsh.js +255 -255
  59. package/{scripts → dsh-mneme/scripts}/sync-lib.js +52 -52
  60. package/{src → dsh-mneme/src}/api.js +783 -783
  61. package/{lib → dsh-mneme/src}/commands.js +64 -64
  62. package/{src → dsh-mneme/src}/config.js +298 -288
  63. package/{src → dsh-mneme/src}/dream/clustering.js +118 -118
  64. package/{lib → dsh-mneme/src}/dream/decisions.js +488 -439
  65. package/{src → dsh-mneme/src}/dream/sleep.js +561 -554
  66. package/{lib → dsh-mneme/src}/dream/tag-extractor.js +156 -156
  67. package/{src → dsh-mneme/src}/dream.js +958 -929
  68. package/{lib → dsh-mneme/src}/embedding.js +154 -154
  69. package/{lib → dsh-mneme/src}/entities/extractor.js +242 -242
  70. package/{lib → dsh-mneme/src}/hot-memory.js +53 -53
  71. package/{src → dsh-mneme/src}/index.js +361 -361
  72. package/{lib → dsh-mneme/src}/inject.js +208 -208
  73. package/{src → dsh-mneme/src}/local-embedder.js +282 -282
  74. package/{src → dsh-mneme/src}/mirror.js +170 -170
  75. package/{src → dsh-mneme/src}/parser/tag.js +59 -59
  76. package/{src → dsh-mneme/src}/parser/wiki-link.js +38 -38
  77. package/{lib → dsh-mneme/src}/quality-filter.js +123 -123
  78. package/{src → dsh-mneme/src}/reranker.js +218 -218
  79. package/{src → dsh-mneme/src}/search/adaptive.js +22 -22
  80. package/{src → dsh-mneme/src}/search/bm25.js +96 -96
  81. package/{lib → dsh-mneme/src}/search/tag-boost.js +61 -61
  82. package/{lib → dsh-mneme/src}/service.js +1726 -1726
  83. package/{src → dsh-mneme/src}/settings.js +172 -172
  84. package/{src → dsh-mneme/src}/store.js +2238 -2238
  85. package/{src → dsh-mneme/src}/summarize.js +236 -236
  86. package/{src → dsh-mneme/src}/tools.js +290 -290
  87. package/{src → dsh-mneme/src}/vector-index.js +116 -116
  88. package/{test → dsh-mneme/test}/api.test.js +594 -594
  89. package/{test → dsh-mneme/test}/audit.test.js +448 -448
  90. package/{test → dsh-mneme/test}/benchmark.test.js +35 -35
  91. package/{test → dsh-mneme/test}/boundary-v0625.test.js +82 -82
  92. package/{test → dsh-mneme/test}/client.test.js +368 -368
  93. package/{test → dsh-mneme/test}/clustering.test.js +100 -100
  94. package/{test → dsh-mneme/test}/commands.test.js +69 -69
  95. package/{test → dsh-mneme/test}/config.test.js +50 -50
  96. package/{test → dsh-mneme/test}/conflict-freeze.test.js +290 -290
  97. package/{test → dsh-mneme/test}/directory.test.js +134 -134
  98. package/{test → dsh-mneme/test}/dream.test.js +1060 -901
  99. package/{test → dsh-mneme/test}/entities.test.js +522 -522
  100. package/{test → dsh-mneme/test}/epistemic.test.js +298 -298
  101. package/{test → dsh-mneme/test}/fnew-0112.test.js +311 -311
  102. package/{test → dsh-mneme/test}/fnew-03.test.js +422 -422
  103. package/{test → dsh-mneme/test}/graph-api.test.js +175 -175
  104. package/{test → dsh-mneme/test}/helpers/dream-mock.js +82 -82
  105. package/{test → dsh-mneme/test}/hot-memory.test.js +174 -174
  106. package/{test → dsh-mneme/test}/inject.test.js +103 -103
  107. package/{test → dsh-mneme/test}/llm-audit.test.js +279 -279
  108. package/{test → dsh-mneme/test}/local-embedder.test.js +227 -227
  109. package/{test → dsh-mneme/test}/mirror-dirty.test.js +424 -424
  110. package/{test → dsh-mneme/test}/mirror-edit-digest.test.js +187 -187
  111. package/{test → dsh-mneme/test}/mirror-generation.test.js +499 -499
  112. package/{test → dsh-mneme/test}/mirror.test.js +249 -249
  113. package/{test → dsh-mneme/test}/normalize-decisions.test.js +120 -120
  114. package/{test → dsh-mneme/test}/peer-blockers.test.js +190 -190
  115. package/{test → dsh-mneme/test}/policy-epoch.test.js +259 -259
  116. package/{test → dsh-mneme/test}/provenance.test.js +103 -103
  117. package/{test → dsh-mneme/test}/quality-filter.test.js +118 -118
  118. package/{test → dsh-mneme/test}/reasoning-effort.test.js +199 -199
  119. package/{test → dsh-mneme/test}/recall-evals.test.js +235 -235
  120. package/{test → dsh-mneme/test}/recall-layer.test.js +315 -315
  121. package/{test → dsh-mneme/test}/receipt-chain.test.js +451 -451
  122. package/{test → dsh-mneme/test}/reflection.test.js +226 -226
  123. package/{test → dsh-mneme/test}/reranker.test.js +240 -240
  124. package/{test → dsh-mneme/test}/search-fusion.test.js +90 -90
  125. package/{test → dsh-mneme/test}/semantic.test.js +124 -124
  126. package/{test → dsh-mneme/test}/service-search.test.js +199 -199
  127. package/{test → dsh-mneme/test}/service.test.js +435 -435
  128. package/{test → dsh-mneme/test}/settings.test.js +118 -118
  129. package/{test → dsh-mneme/test}/sleep.test.js +365 -365
  130. package/{test → dsh-mneme/test}/store.test.js +436 -436
  131. package/{test → dsh-mneme/test}/stress.test.js +209 -209
  132. package/{test → dsh-mneme/test}/summarize.test.js +191 -191
  133. package/{test → dsh-mneme/test}/tag-boost.test.js +125 -125
  134. package/{test → dsh-mneme/test}/tag.test.js +312 -312
  135. package/{test → dsh-mneme/test}/tools.test.js +285 -285
  136. package/{test → dsh-mneme/test}/vector-index.test.js +221 -221
  137. package/{test → dsh-mneme/test}/wiki-link.test.js +332 -332
  138. package/package.json +18 -40
  139. package//346/250/252/345/271/205.png +0 -0
@@ -1,240 +1,240 @@
1
- import test from "node:test";
2
- import assert from "node:assert/strict";
3
- import { spawnSync } from "node:child_process";
4
- import { fileURLToPath } from "node:url";
5
- import { LocalReranker } from "../src/reranker.js";
6
-
7
- /** Injected scorer: records (query, passage) calls, returns a fixed score. */
8
- function makeScorer(scoreOf) {
9
- const calls = [];
10
- const fn = async (query, passage) => {
11
- calls.push({ query, passage });
12
- return typeof scoreOf === "function" ? scoreOf(passage) : scoreOf;
13
- };
14
- return { fn, calls };
15
- }
16
-
17
- /** Fake feature-extraction engine: each input embeds to [1, k*0.25, 0, 0]. */
18
- function makeFakeExtractor(dim = 4, calls = []) {
19
- let k = 0;
20
- const fn = async (texts) => {
21
- calls.push({ count: texts.length });
22
- const rows = texts.map(() => {
23
- const n = k++;
24
- return Array.from({ length: dim }, (__, j) => (j === 0 ? 1 : j === 1 ? n * 0.25 : 0));
25
- });
26
- const flat = Float32Array.from(rows.flat());
27
- return { data: flat, dims: [texts.length, dim] };
28
- };
29
- fn.dispose = () => {
30
- fn.disposed = true;
31
- };
32
- return fn;
33
- }
34
-
35
- /** Fake text-classification engine exposing tokenizer + model for the tc path. */
36
- function makeFakeTc(logitsPerRow) {
37
- const tokenizer = (texts, opts) => ({ texts, text_pair: opts.text_pair });
38
- const model = async (inputs) => {
39
- const n = inputs.texts.length;
40
- const flat = new Float32Array(logitsPerRow.slice(0, n * 2));
41
- return { logits: { data: flat, dims: [n, 2] } };
42
- };
43
- return { tokenizer, model, dispose: () => {} };
44
- }
45
-
46
- function candidates(ids) {
47
- return ids.map((id) => ({ id, title: `T-${id}`, content: `C-${id}` }));
48
- }
49
-
50
- test("init with injected scorePair skips model loading", async () => {
51
- let factoryCalled = false;
52
- const { fn, calls } = makeScorer(0.7);
53
- const r = new LocalReranker({
54
- scorePair: fn,
55
- engineFactory: async () => {
56
- factoryCalled = true;
57
- throw new Error("should never load");
58
- }
59
- });
60
- await r.init();
61
- assert.equal(factoryCalled, false);
62
- const out = await r.rerank("q", candidates(["a"]));
63
- assert.deepEqual(out, [{ id: "a", score: 0.7 }]);
64
- assert.equal(calls.length, 1);
65
- assert.equal(calls[0].query, "q");
66
- assert.equal(calls[0].passage, "T-a\nC-a");
67
- });
68
-
69
- test("rerank returns results sorted by descending score", async () => {
70
- const { fn } = makeScorer((p) => (p.includes("A") ? 0.9 : p.includes("B") ? 0.5 : 0.2));
71
- const r = new LocalReranker({ scorePair: fn });
72
- await r.init();
73
- const out = await r.rerank("q", candidates(["A", "B", "C"]));
74
- assert.deepEqual(out.map((x) => x.id), ["A", "B", "C"]);
75
- assert.deepEqual(out.map((x) => x.score), [0.9, 0.5, 0.2]);
76
- });
77
-
78
- test("rerank returns [] for empty candidates", async () => {
79
- const { fn } = makeScorer(0.9);
80
- const r = new LocalReranker({ scorePair: fn });
81
- await r.init();
82
- assert.deepEqual(await r.rerank("q", []), []);
83
- });
84
-
85
- test("rerank drops candidates below scoreThreshold", async () => {
86
- const { fn } = makeScorer((p) => (p.includes("A") ? 0.8 : p.includes("B") ? 0.4 : 0.05));
87
- const r = new LocalReranker({ scorePair: fn, scoreThreshold: 0.3 });
88
- await r.init();
89
- const out = await r.rerank("q", candidates(["A", "B", "C"]));
90
- assert.deepEqual(out.map((x) => x.id), ["A", "B"]);
91
- });
92
-
93
- test("rerank clamps scores into 0..1", async () => {
94
- const { fn } = makeScorer((p) => (p.includes("A") ? 1.5 : p.includes("B") ? -0.2 : NaN));
95
- const r = new LocalReranker({ scorePair: fn, scoreThreshold: 0 });
96
- await r.init();
97
- const out = await r.rerank("q", candidates(["A", "B", "C"]));
98
- assert.deepEqual(out.map((x) => x.score), [1, 0, 0]);
99
- });
100
-
101
- test("rerank truncates to maxCandidates", async () => {
102
- const { fn, calls } = makeScorer(0.6);
103
- const r = new LocalReranker({ scorePair: fn, maxCandidates: 2 });
104
- await r.init();
105
- const out = await r.rerank("q", candidates(["a", "b", "c", "d"]));
106
- assert.equal(calls.length, 2);
107
- assert.equal(out.length, 2);
108
- });
109
-
110
- test("passage falls back to title when content is missing", async () => {
111
- const { fn, calls } = makeScorer(0.8);
112
- const r = new LocalReranker({ scorePair: fn });
113
- await r.init();
114
- await r.rerank("q", [{ id: "x", title: "only-title", content: "" }]);
115
- assert.equal(calls[0].passage, "only-title");
116
- });
117
-
118
- test("rerank propagates injected scorer failures", async () => {
119
- const bad = async () => {
120
- throw new Error("scorer boom");
121
- };
122
- const r = new LocalReranker({ scorePair: bad });
123
- await r.init();
124
- await assert.rejects(() => r.rerank("q", candidates(["a"])), /scorer boom/);
125
- });
126
-
127
- test("rerank throws on non-array candidates", async () => {
128
- const r = new LocalReranker({ scorePair: async () => 0.5 });
129
- await r.init();
130
- await assert.rejects(() => r.rerank("q", "not-an-array"), /array/);
131
- });
132
-
133
- test("init throws when no strategy can load", async () => {
134
- const r = new LocalReranker({
135
- engineFactory: async () => {
136
- throw new Error("Unsupported pipeline");
137
- }
138
- });
139
- await assert.rejects(() => r.init(), /LocalReranker failed to load/);
140
- });
141
-
142
- test("init cascades rerank -> tc -> feature-extraction and batches", async () => {
143
- const calls = [];
144
- const loader = async (task) => {
145
- if (task === "feature-extraction") return makeFakeExtractor(4, calls);
146
- throw new Error(`Unsupported pipeline: ${task}`);
147
- };
148
- const r = new LocalReranker({ engineFactory: loader, batchSize: 2 });
149
- await r.init();
150
- const out = await r.rerank("q", candidates(["a", "b", "c"]));
151
- // Query k=0 [1,0,0,0]; a,b,c embed at k=1..3 -> cosine 0.970, 0.894, 0.8,
152
- // all above the default threshold.
153
- assert.equal(out.length, 3);
154
- assert.deepEqual(out.map((x) => x.id), ["a", "b", "c"]);
155
- assert.ok(out[0].score >= out[1].score && out[1].score >= out[2].score);
156
- // Query embed (cached) + two batches of size 2 and 1.
157
- assert.deepEqual(calls.map((c) => c.count), [1, 2, 1]);
158
- // Query vector is cached: a second rerank only makes batch calls.
159
- await r.rerank("q", candidates(["a", "b", "c"]));
160
- assert.deepEqual(calls.map((c) => c.count), [1, 2, 1, 2, 1]);
161
- });
162
-
163
- test("text-classification strategy scores via logit delta", async () => {
164
- const loader = async (task) => {
165
- if (task === "text-classification") return makeFakeTc([0, 1, 0, 0, -2, 2]);
166
- throw new Error(`Unsupported pipeline: ${task}`);
167
- };
168
- const r = new LocalReranker({ engineFactory: loader });
169
- await r.init();
170
- const out = await r.rerank("q", candidates(["A", "B", "C"]));
171
- // sigmoid(1-0)=0.731, sigmoid(0)=0.5, sigmoid(2-(-2))=0.982.
172
- assert.deepEqual(out.map((x) => x.id), ["C", "A", "B"]);
173
- assert.ok(Math.abs(out[0].score - 0.982) < 1e-3);
174
- assert.ok(Math.abs(out[1].score - 0.731) < 1e-3);
175
- assert.ok(Math.abs(out[2].score - 0.5) < 1e-3);
176
- });
177
-
178
- test("modelHash follows the embedder convention", () => {
179
- const a = new LocalReranker({ model: "Xenova/bge-reranker-base" });
180
- const b = new LocalReranker({ model: "Xenova/bge-reranker-base" });
181
- assert.equal(a.modelHash, b.modelHash);
182
- assert.match(a.modelHash, /^Xenova\/bge-reranker-base#[0-9a-f]+$/);
183
- assert.notEqual(a.modelHash, new LocalReranker({ model: "other/model" }).modelHash);
184
- });
185
-
186
- test("dispose releases the loaded pipeline", async () => {
187
- const extractor = makeFakeExtractor(4);
188
- const r = new LocalReranker({
189
- engineFactory: async (task) => {
190
- if (task === "feature-extraction") return extractor;
191
- throw new Error("Unsupported pipeline");
192
- }
193
- });
194
- await r.init();
195
- assert.ok(r.pipeline);
196
- r.dispose();
197
- assert.equal(r.pipeline, null);
198
- assert.equal(extractor.disposed, true);
199
- });
200
-
201
- test("default pipeline loader mirrors cache_dir onto env.cacheDir (issue #13)", () => {
202
- // The fix lives in the module's *default* loader — the dynamic-import of
203
- // @huggingface/transformers that the in-process tests bypass by injecting
204
- // engineFactory. So it is exercised in a child node process under the
205
- // --experimental-test-module-mocks flag: the transformers module is mocked
206
- // with an empty env, LocalReranker uses the real default loader, and we
207
- // assert env.cacheDir picks up the constructor's cache_dir. A regression
208
- // (loader no longer mirroring) fails the child and surfaces here as a
209
- // non-zero exit.
210
- const srcUrl = new URL("../src/reranker.js", import.meta.url).href;
211
- const cacheDir = "/tmp/dsh-mneme-cache-mirror-test";
212
- const script = `
213
- import { test } from "node:test";
214
- const cacheDir = ${JSON.stringify(cacheDir)};
215
- test("cache_dir is mirrored onto env.cacheDir", async (t) => {
216
- t.mock.module("@huggingface/transformers", {
217
- namedExports: {
218
- env: {},
219
- pipeline: async () => ({ dispose: () => {} })
220
- }
221
- });
222
- const { LocalReranker } = await import(${JSON.stringify(srcUrl)});
223
- const r = new LocalReranker({ cacheDir, device: "cpu" });
224
- await r.init();
225
- const { env } = await import("@huggingface/transformers");
226
- if (env.cacheDir !== cacheDir) {
227
- throw new Error("env.cacheDir not mirrored from cache_dir: " + env.cacheDir);
228
- }
229
- console.log("CACHE_MIRROR_OK");
230
- });
231
- `;
232
- const res = spawnSync(process.execPath, [
233
- "--experimental-test-module-mocks",
234
- "--input-type=module",
235
- "-e",
236
- script
237
- ], { encoding: "utf8", cwd: fileURLToPath(new URL("..", import.meta.url)) });
238
- assert.equal(res.status, 0, `cache-dir mirror child failed:\n${res.stdout}\n${res.stderr}`);
239
- assert.match(res.stdout, /CACHE_MIRROR_OK/);
240
- });
1
+ import test from "node:test";
2
+ import assert from "node:assert/strict";
3
+ import { spawnSync } from "node:child_process";
4
+ import { fileURLToPath } from "node:url";
5
+ import { LocalReranker } from "../src/reranker.js";
6
+
7
+ /** Injected scorer: records (query, passage) calls, returns a fixed score. */
8
+ function makeScorer(scoreOf) {
9
+ const calls = [];
10
+ const fn = async (query, passage) => {
11
+ calls.push({ query, passage });
12
+ return typeof scoreOf === "function" ? scoreOf(passage) : scoreOf;
13
+ };
14
+ return { fn, calls };
15
+ }
16
+
17
+ /** Fake feature-extraction engine: each input embeds to [1, k*0.25, 0, 0]. */
18
+ function makeFakeExtractor(dim = 4, calls = []) {
19
+ let k = 0;
20
+ const fn = async (texts) => {
21
+ calls.push({ count: texts.length });
22
+ const rows = texts.map(() => {
23
+ const n = k++;
24
+ return Array.from({ length: dim }, (__, j) => (j === 0 ? 1 : j === 1 ? n * 0.25 : 0));
25
+ });
26
+ const flat = Float32Array.from(rows.flat());
27
+ return { data: flat, dims: [texts.length, dim] };
28
+ };
29
+ fn.dispose = () => {
30
+ fn.disposed = true;
31
+ };
32
+ return fn;
33
+ }
34
+
35
+ /** Fake text-classification engine exposing tokenizer + model for the tc path. */
36
+ function makeFakeTc(logitsPerRow) {
37
+ const tokenizer = (texts, opts) => ({ texts, text_pair: opts.text_pair });
38
+ const model = async (inputs) => {
39
+ const n = inputs.texts.length;
40
+ const flat = new Float32Array(logitsPerRow.slice(0, n * 2));
41
+ return { logits: { data: flat, dims: [n, 2] } };
42
+ };
43
+ return { tokenizer, model, dispose: () => {} };
44
+ }
45
+
46
+ function candidates(ids) {
47
+ return ids.map((id) => ({ id, title: `T-${id}`, content: `C-${id}` }));
48
+ }
49
+
50
+ test("init with injected scorePair skips model loading", async () => {
51
+ let factoryCalled = false;
52
+ const { fn, calls } = makeScorer(0.7);
53
+ const r = new LocalReranker({
54
+ scorePair: fn,
55
+ engineFactory: async () => {
56
+ factoryCalled = true;
57
+ throw new Error("should never load");
58
+ }
59
+ });
60
+ await r.init();
61
+ assert.equal(factoryCalled, false);
62
+ const out = await r.rerank("q", candidates(["a"]));
63
+ assert.deepEqual(out, [{ id: "a", score: 0.7 }]);
64
+ assert.equal(calls.length, 1);
65
+ assert.equal(calls[0].query, "q");
66
+ assert.equal(calls[0].passage, "T-a\nC-a");
67
+ });
68
+
69
+ test("rerank returns results sorted by descending score", async () => {
70
+ const { fn } = makeScorer((p) => (p.includes("A") ? 0.9 : p.includes("B") ? 0.5 : 0.2));
71
+ const r = new LocalReranker({ scorePair: fn });
72
+ await r.init();
73
+ const out = await r.rerank("q", candidates(["A", "B", "C"]));
74
+ assert.deepEqual(out.map((x) => x.id), ["A", "B", "C"]);
75
+ assert.deepEqual(out.map((x) => x.score), [0.9, 0.5, 0.2]);
76
+ });
77
+
78
+ test("rerank returns [] for empty candidates", async () => {
79
+ const { fn } = makeScorer(0.9);
80
+ const r = new LocalReranker({ scorePair: fn });
81
+ await r.init();
82
+ assert.deepEqual(await r.rerank("q", []), []);
83
+ });
84
+
85
+ test("rerank drops candidates below scoreThreshold", async () => {
86
+ const { fn } = makeScorer((p) => (p.includes("A") ? 0.8 : p.includes("B") ? 0.4 : 0.05));
87
+ const r = new LocalReranker({ scorePair: fn, scoreThreshold: 0.3 });
88
+ await r.init();
89
+ const out = await r.rerank("q", candidates(["A", "B", "C"]));
90
+ assert.deepEqual(out.map((x) => x.id), ["A", "B"]);
91
+ });
92
+
93
+ test("rerank clamps scores into 0..1", async () => {
94
+ const { fn } = makeScorer((p) => (p.includes("A") ? 1.5 : p.includes("B") ? -0.2 : NaN));
95
+ const r = new LocalReranker({ scorePair: fn, scoreThreshold: 0 });
96
+ await r.init();
97
+ const out = await r.rerank("q", candidates(["A", "B", "C"]));
98
+ assert.deepEqual(out.map((x) => x.score), [1, 0, 0]);
99
+ });
100
+
101
+ test("rerank truncates to maxCandidates", async () => {
102
+ const { fn, calls } = makeScorer(0.6);
103
+ const r = new LocalReranker({ scorePair: fn, maxCandidates: 2 });
104
+ await r.init();
105
+ const out = await r.rerank("q", candidates(["a", "b", "c", "d"]));
106
+ assert.equal(calls.length, 2);
107
+ assert.equal(out.length, 2);
108
+ });
109
+
110
+ test("passage falls back to title when content is missing", async () => {
111
+ const { fn, calls } = makeScorer(0.8);
112
+ const r = new LocalReranker({ scorePair: fn });
113
+ await r.init();
114
+ await r.rerank("q", [{ id: "x", title: "only-title", content: "" }]);
115
+ assert.equal(calls[0].passage, "only-title");
116
+ });
117
+
118
+ test("rerank propagates injected scorer failures", async () => {
119
+ const bad = async () => {
120
+ throw new Error("scorer boom");
121
+ };
122
+ const r = new LocalReranker({ scorePair: bad });
123
+ await r.init();
124
+ await assert.rejects(() => r.rerank("q", candidates(["a"])), /scorer boom/);
125
+ });
126
+
127
+ test("rerank throws on non-array candidates", async () => {
128
+ const r = new LocalReranker({ scorePair: async () => 0.5 });
129
+ await r.init();
130
+ await assert.rejects(() => r.rerank("q", "not-an-array"), /array/);
131
+ });
132
+
133
+ test("init throws when no strategy can load", async () => {
134
+ const r = new LocalReranker({
135
+ engineFactory: async () => {
136
+ throw new Error("Unsupported pipeline");
137
+ }
138
+ });
139
+ await assert.rejects(() => r.init(), /LocalReranker failed to load/);
140
+ });
141
+
142
+ test("init cascades rerank -> tc -> feature-extraction and batches", async () => {
143
+ const calls = [];
144
+ const loader = async (task) => {
145
+ if (task === "feature-extraction") return makeFakeExtractor(4, calls);
146
+ throw new Error(`Unsupported pipeline: ${task}`);
147
+ };
148
+ const r = new LocalReranker({ engineFactory: loader, batchSize: 2 });
149
+ await r.init();
150
+ const out = await r.rerank("q", candidates(["a", "b", "c"]));
151
+ // Query k=0 [1,0,0,0]; a,b,c embed at k=1..3 -> cosine 0.970, 0.894, 0.8,
152
+ // all above the default threshold.
153
+ assert.equal(out.length, 3);
154
+ assert.deepEqual(out.map((x) => x.id), ["a", "b", "c"]);
155
+ assert.ok(out[0].score >= out[1].score && out[1].score >= out[2].score);
156
+ // Query embed (cached) + two batches of size 2 and 1.
157
+ assert.deepEqual(calls.map((c) => c.count), [1, 2, 1]);
158
+ // Query vector is cached: a second rerank only makes batch calls.
159
+ await r.rerank("q", candidates(["a", "b", "c"]));
160
+ assert.deepEqual(calls.map((c) => c.count), [1, 2, 1, 2, 1]);
161
+ });
162
+
163
+ test("text-classification strategy scores via logit delta", async () => {
164
+ const loader = async (task) => {
165
+ if (task === "text-classification") return makeFakeTc([0, 1, 0, 0, -2, 2]);
166
+ throw new Error(`Unsupported pipeline: ${task}`);
167
+ };
168
+ const r = new LocalReranker({ engineFactory: loader });
169
+ await r.init();
170
+ const out = await r.rerank("q", candidates(["A", "B", "C"]));
171
+ // sigmoid(1-0)=0.731, sigmoid(0)=0.5, sigmoid(2-(-2))=0.982.
172
+ assert.deepEqual(out.map((x) => x.id), ["C", "A", "B"]);
173
+ assert.ok(Math.abs(out[0].score - 0.982) < 1e-3);
174
+ assert.ok(Math.abs(out[1].score - 0.731) < 1e-3);
175
+ assert.ok(Math.abs(out[2].score - 0.5) < 1e-3);
176
+ });
177
+
178
+ test("modelHash follows the embedder convention", () => {
179
+ const a = new LocalReranker({ model: "Xenova/bge-reranker-base" });
180
+ const b = new LocalReranker({ model: "Xenova/bge-reranker-base" });
181
+ assert.equal(a.modelHash, b.modelHash);
182
+ assert.match(a.modelHash, /^Xenova\/bge-reranker-base#[0-9a-f]+$/);
183
+ assert.notEqual(a.modelHash, new LocalReranker({ model: "other/model" }).modelHash);
184
+ });
185
+
186
+ test("dispose releases the loaded pipeline", async () => {
187
+ const extractor = makeFakeExtractor(4);
188
+ const r = new LocalReranker({
189
+ engineFactory: async (task) => {
190
+ if (task === "feature-extraction") return extractor;
191
+ throw new Error("Unsupported pipeline");
192
+ }
193
+ });
194
+ await r.init();
195
+ assert.ok(r.pipeline);
196
+ r.dispose();
197
+ assert.equal(r.pipeline, null);
198
+ assert.equal(extractor.disposed, true);
199
+ });
200
+
201
+ test("default pipeline loader mirrors cache_dir onto env.cacheDir (issue #13)", () => {
202
+ // The fix lives in the module's *default* loader — the dynamic-import of
203
+ // @huggingface/transformers that the in-process tests bypass by injecting
204
+ // engineFactory. So it is exercised in a child node process under the
205
+ // --experimental-test-module-mocks flag: the transformers module is mocked
206
+ // with an empty env, LocalReranker uses the real default loader, and we
207
+ // assert env.cacheDir picks up the constructor's cache_dir. A regression
208
+ // (loader no longer mirroring) fails the child and surfaces here as a
209
+ // non-zero exit.
210
+ const srcUrl = new URL("../src/reranker.js", import.meta.url).href;
211
+ const cacheDir = "/tmp/dsh-mneme-cache-mirror-test";
212
+ const script = `
213
+ import { test } from "node:test";
214
+ const cacheDir = ${JSON.stringify(cacheDir)};
215
+ test("cache_dir is mirrored onto env.cacheDir", async (t) => {
216
+ t.mock.module("@huggingface/transformers", {
217
+ namedExports: {
218
+ env: {},
219
+ pipeline: async () => ({ dispose: () => {} })
220
+ }
221
+ });
222
+ const { LocalReranker } = await import(${JSON.stringify(srcUrl)});
223
+ const r = new LocalReranker({ cacheDir, device: "cpu" });
224
+ await r.init();
225
+ const { env } = await import("@huggingface/transformers");
226
+ if (env.cacheDir !== cacheDir) {
227
+ throw new Error("env.cacheDir not mirrored from cache_dir: " + env.cacheDir);
228
+ }
229
+ console.log("CACHE_MIRROR_OK");
230
+ });
231
+ `;
232
+ const res = spawnSync(process.execPath, [
233
+ "--experimental-test-module-mocks",
234
+ "--input-type=module",
235
+ "-e",
236
+ script
237
+ ], { encoding: "utf8", cwd: fileURLToPath(new URL("..", import.meta.url)) });
238
+ assert.equal(res.status, 0, `cache-dir mirror child failed:\n${res.stdout}\n${res.stderr}`);
239
+ assert.match(res.stdout, /CACHE_MIRROR_OK/);
240
+ });