@modusensus/dsh-mneme 0.6.7 → 0.6.8
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/LICENSE +21 -21
- package/README.md +463 -463
- package/cordis.patch.yml +15 -15
- package/lib/api.js +783 -783
- package/lib/client.js +1757 -1757
- package/lib/commands.js +64 -64
- package/lib/config.js +288 -288
- package/lib/dream/clustering.js +118 -118
- package/lib/dream/decisions.js +439 -439
- package/lib/dream/sleep.js +561 -554
- package/lib/dream/tag-extractor.js +156 -156
- package/lib/dream.js +935 -929
- package/lib/embedding.js +154 -154
- package/lib/entities/extractor.js +242 -242
- package/lib/hot-memory.js +53 -53
- package/lib/index.js +361 -361
- package/lib/inject.js +208 -208
- package/lib/local-embedder.js +282 -282
- package/lib/mirror.js +170 -170
- package/lib/parser/tag.js +59 -59
- package/lib/parser/wiki-link.js +38 -38
- package/lib/quality-filter.js +123 -123
- package/lib/reranker.js +218 -218
- package/lib/search/adaptive.js +22 -22
- package/lib/search/bm25.js +96 -96
- package/lib/search/tag-boost.js +61 -61
- package/lib/service.js +1726 -1726
- package/lib/settings.js +172 -172
- package/lib/store.js +2238 -2238
- package/lib/summarize.js +236 -236
- package/lib/tools.js +290 -290
- package/lib/vector-index.js +116 -116
- package/package.json +80 -80
- package/scripts/benchmark-embed.js +201 -201
- package/scripts/benchmark-recall.js +133 -133
- package/scripts/benchmark-rerank.js +166 -166
- package/scripts/e2e-dsh.js +218 -218
- package/scripts/stress-dsh.js +255 -255
- package/scripts/sync-lib.js +52 -52
- package/src/api.js +783 -783
- package/src/commands.js +64 -64
- package/src/config.js +288 -288
- package/src/dream/clustering.js +118 -118
- package/src/dream/decisions.js +439 -439
- package/src/dream/sleep.js +561 -554
- package/src/dream/tag-extractor.js +156 -156
- package/src/dream.js +935 -929
- package/src/embedding.js +154 -154
- package/src/entities/extractor.js +242 -242
- package/src/hot-memory.js +53 -53
- package/src/index.js +361 -361
- package/src/inject.js +208 -208
- package/src/local-embedder.js +282 -282
- package/src/mirror.js +170 -170
- package/src/parser/tag.js +59 -59
- package/src/parser/wiki-link.js +38 -38
- package/src/quality-filter.js +123 -123
- package/src/reranker.js +218 -218
- package/src/search/adaptive.js +22 -22
- package/src/search/bm25.js +96 -96
- package/src/search/tag-boost.js +61 -61
- package/src/service.js +1726 -1726
- package/src/settings.js +172 -172
- package/src/store.js +2238 -2238
- package/src/summarize.js +236 -236
- package/src/tools.js +290 -290
- package/src/vector-index.js +116 -116
- package/test/api.test.js +594 -594
- package/test/audit.test.js +448 -448
- package/test/benchmark.test.js +35 -35
- package/test/boundary-v0625.test.js +82 -82
- package/test/client.test.js +368 -368
- package/test/clustering.test.js +100 -100
- package/test/commands.test.js +69 -69
- package/test/config.test.js +50 -50
- package/test/conflict-freeze.test.js +290 -290
- package/test/directory.test.js +134 -134
- package/test/dream.test.js +903 -901
- package/test/entities.test.js +522 -522
- package/test/epistemic.test.js +298 -298
- package/test/fnew-0112.test.js +311 -311
- package/test/fnew-03.test.js +422 -422
- package/test/graph-api.test.js +175 -175
- package/test/helpers/dream-mock.js +82 -82
- package/test/hot-memory.test.js +174 -174
- package/test/inject.test.js +103 -103
- package/test/llm-audit.test.js +279 -279
- package/test/local-embedder.test.js +227 -227
- package/test/mirror-dirty.test.js +424 -424
- package/test/mirror-edit-digest.test.js +187 -187
- package/test/mirror-generation.test.js +499 -499
- package/test/mirror.test.js +249 -249
- package/test/normalize-decisions.test.js +120 -120
- package/test/peer-blockers.test.js +190 -190
- package/test/policy-epoch.test.js +259 -259
- package/test/provenance.test.js +103 -103
- package/test/quality-filter.test.js +118 -118
- package/test/reasoning-effort.test.js +199 -199
- package/test/recall-evals.test.js +235 -235
- package/test/recall-layer.test.js +315 -315
- package/test/receipt-chain.test.js +451 -451
- package/test/reflection.test.js +226 -226
- package/test/reranker.test.js +240 -240
- package/test/search-fusion.test.js +90 -90
- package/test/semantic.test.js +124 -124
- package/test/service-search.test.js +199 -199
- package/test/service.test.js +435 -435
- package/test/settings.test.js +118 -118
- package/test/sleep.test.js +365 -365
- package/test/store.test.js +436 -436
- package/test/stress.test.js +209 -209
- package/test/summarize.test.js +191 -191
- package/test/tag-boost.test.js +125 -125
- package/test/tag.test.js +312 -312
- package/test/tools.test.js +285 -285
- package/test/vector-index.test.js +221 -221
- package/test/wiki-link.test.js +332 -332
package/test/benchmark.test.js
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
import test from "node:test";
|
|
2
|
-
import assert from "node:assert/strict";
|
|
3
|
-
import { runBenchmark, TEST_CASES } from "../scripts/benchmark-recall.js";
|
|
4
|
-
|
|
5
|
-
// The benchmark harness must stay a working evaluation: it runs the real
|
|
6
|
-
// searchMemories pipeline over the seeded store and the fused configuration
|
|
7
|
-
// must not fall behind the legacy one (that is the whole point of the third
|
|
8
|
-
// recall path).
|
|
9
|
-
test("benchmark harness runs both configurations", async () => {
|
|
10
|
-
const report = await runBenchmark({ topK: 5 });
|
|
11
|
-
assert.equal(report.runs.length, 2);
|
|
12
|
-
assert.equal(report.runs[0].config, "legacy");
|
|
13
|
-
assert.equal(report.runs[1].config, "fused");
|
|
14
|
-
for (const run of report.runs) {
|
|
15
|
-
assert.equal(run.rows.length, TEST_CASES.length);
|
|
16
|
-
assert.ok(run.recallAtK >= 0 && run.recallAtK <= 1);
|
|
17
|
-
}
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
test("fused configuration never trails legacy on Recall@5", async () => {
|
|
21
|
-
const report = await runBenchmark({ topK: 5 });
|
|
22
|
-
const [legacy, fused] = report.runs;
|
|
23
|
-
assert.ok(
|
|
24
|
-
fused.recallAtK >= legacy.recallAtK,
|
|
25
|
-
`fused (${fused.recallAtK}) must be >= legacy (${legacy.recallAtK})`
|
|
26
|
-
);
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
test("test cases cover the scattered-term BM25 territory", () => {
|
|
30
|
-
assert.ok(TEST_CASES.length >= 10);
|
|
31
|
-
assert.ok(TEST_CASES.some((tc) => tc.expected.length >= 2), "multi-target cases present");
|
|
32
|
-
for (const tc of TEST_CASES) {
|
|
33
|
-
assert.ok(tc.query && tc.expected.length > 0);
|
|
34
|
-
}
|
|
35
|
-
});
|
|
1
|
+
import test from "node:test";
|
|
2
|
+
import assert from "node:assert/strict";
|
|
3
|
+
import { runBenchmark, TEST_CASES } from "../scripts/benchmark-recall.js";
|
|
4
|
+
|
|
5
|
+
// The benchmark harness must stay a working evaluation: it runs the real
|
|
6
|
+
// searchMemories pipeline over the seeded store and the fused configuration
|
|
7
|
+
// must not fall behind the legacy one (that is the whole point of the third
|
|
8
|
+
// recall path).
|
|
9
|
+
test("benchmark harness runs both configurations", async () => {
|
|
10
|
+
const report = await runBenchmark({ topK: 5 });
|
|
11
|
+
assert.equal(report.runs.length, 2);
|
|
12
|
+
assert.equal(report.runs[0].config, "legacy");
|
|
13
|
+
assert.equal(report.runs[1].config, "fused");
|
|
14
|
+
for (const run of report.runs) {
|
|
15
|
+
assert.equal(run.rows.length, TEST_CASES.length);
|
|
16
|
+
assert.ok(run.recallAtK >= 0 && run.recallAtK <= 1);
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
test("fused configuration never trails legacy on Recall@5", async () => {
|
|
21
|
+
const report = await runBenchmark({ topK: 5 });
|
|
22
|
+
const [legacy, fused] = report.runs;
|
|
23
|
+
assert.ok(
|
|
24
|
+
fused.recallAtK >= legacy.recallAtK,
|
|
25
|
+
`fused (${fused.recallAtK}) must be >= legacy (${legacy.recallAtK})`
|
|
26
|
+
);
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
test("test cases cover the scattered-term BM25 territory", () => {
|
|
30
|
+
assert.ok(TEST_CASES.length >= 10);
|
|
31
|
+
assert.ok(TEST_CASES.some((tc) => tc.expected.length >= 2), "multi-target cases present");
|
|
32
|
+
for (const tc of TEST_CASES) {
|
|
33
|
+
assert.ok(tc.query && tc.expected.length > 0);
|
|
34
|
+
}
|
|
35
|
+
});
|
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
// v0.6.5 整合边界测试:跨 v0.6.1-0.6.4 的边界场景。
|
|
2
|
-
// 覆盖:循环 wiki-link / 空 tag 清除 / 超长 tag 丢弃 / 多 tag 目录分组 /
|
|
3
|
-
// autoTag 非法输出 fail-safe / tag 搜索大小写。
|
|
4
|
-
import { test } from "node:test";
|
|
5
|
-
import assert from "node:assert/strict";
|
|
6
|
-
import { createStore } from "../src/store.js";
|
|
7
|
-
import { createService } from "../src/service.js";
|
|
8
|
-
import { parseWikiLinks } from "../src/parser/wiki-link.js";
|
|
9
|
-
import { parseTags } from "../src/parser/tag.js";
|
|
10
|
-
import { extractQueryTags } from "../src/search/tag-boost.js";
|
|
11
|
-
|
|
12
|
-
function makeService(config = {}) {
|
|
13
|
-
const store = createStore(":memory:");
|
|
14
|
-
const service = createService({ store, mirror: null, config });
|
|
15
|
-
return { store, service };
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
test("wiki-link: mutual links (A→B and B→A) resolve without loops", () => {
|
|
19
|
-
const { store, service } = makeService({ wikiLinkEnabled: true });
|
|
20
|
-
const a = service.saveWithDedupe({
|
|
21
|
-
type: "preference", title: "Alpha", content: "参见 [[Beta]]", importance: 3,
|
|
22
|
-
}).memory;
|
|
23
|
-
const b = service.saveWithDedupe({
|
|
24
|
-
type: "preference", title: "Beta", content: "反链 [[Alpha]]", importance: 3,
|
|
25
|
-
}).memory;
|
|
26
|
-
store.saveWikiLinks({ memoryId: a.id, title: a.title, targets: ["Beta"] });
|
|
27
|
-
store.saveWikiLinks({ memoryId: b.id, title: b.title, targets: ["Alpha"] });
|
|
28
|
-
const ab = service.getForwardLinks(a.id);
|
|
29
|
-
const ba = service.getBacklinks(a.id);
|
|
30
|
-
assert.ok(ab.some((r) => r.target.id === b.id), "A links to B");
|
|
31
|
-
assert.ok(ba.some((r) => r.source.id === b.id), "B backlinks to A");
|
|
32
|
-
store.close();
|
|
33
|
-
});
|
|
34
|
-
|
|
35
|
-
test("tags: setting empty array clears the live tag row", () => {
|
|
36
|
-
const { store } = makeService();
|
|
37
|
-
const a = store.save({ type: "preference", title: "A", content: "c", tags: [] });
|
|
38
|
-
store.setMemoryTags(a.id, ["规划", "前端"]);
|
|
39
|
-
assert.deepEqual(store.getMemoryTags(a.id), ["规划", "前端"]);
|
|
40
|
-
store.setMemoryTags(a.id, []);
|
|
41
|
-
assert.deepEqual(store.getMemoryTags(a.id), []);
|
|
42
|
-
store.close();
|
|
43
|
-
});
|
|
44
|
-
|
|
45
|
-
test("parseTags: over-length and invalid tags are dropped", () => {
|
|
46
|
-
const out = parseTags("#短 #这是一个超过二十个字符的超级长标签 #ok_123 #带-连字符");
|
|
47
|
-
assert.ok(out.includes("短"), "short CJK tag kept");
|
|
48
|
-
assert.ok(out.includes("ok_123"), "alnum underscore kept");
|
|
49
|
-
assert.ok(out.includes("带-连字符"), "hyphen kept");
|
|
50
|
-
assert.ok(!out.some((t) => t.length > 20), "no tag exceeds 20 chars");
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
test("tag search: matches case-insensitively and composes with keywords", async () => {
|
|
54
|
-
const { store, service } = makeService();
|
|
55
|
-
const a = service.saveWithDedupe({
|
|
56
|
-
type: "preference", title: "规划", content: "博客重构", importance: 3,
|
|
57
|
-
}).memory;
|
|
58
|
-
store.setMemoryTags(a.id, ["规划"]);
|
|
59
|
-
const r = await service.searchMemories("tag:规划 博客", {
|
|
60
|
-
mode: "keyword", limit: 10, useRerank: false,
|
|
61
|
-
});
|
|
62
|
-
assert.ok(r.some((m) => m.id === a.id), "tag: prefix + keyword composition");
|
|
63
|
-
store.close();
|
|
64
|
-
});
|
|
65
|
-
|
|
66
|
-
test("directory: many-tag memory appears under every tag group", () => {
|
|
67
|
-
const { store, service } = makeService();
|
|
68
|
-
const a = store.save({ type: "preference", title: "多标签", content: "c", tags: [] });
|
|
69
|
-
store.setMemoryTags(a.id, ["规划", "前端", "博客"]);
|
|
70
|
-
const dir = store.getDirectory();
|
|
71
|
-
const groups = dir.groups.filter((g) => g.tag === "规划" || g.tag === "前端" || g.tag === "博客");
|
|
72
|
-
assert.equal(groups.length, 3, "one group per tag");
|
|
73
|
-
for (const g of groups) {
|
|
74
|
-
assert.ok(g.memories.some((m) => m.id === a.id), `memory under ${g.tag}`);
|
|
75
|
-
}
|
|
76
|
-
store.close();
|
|
77
|
-
});
|
|
78
|
-
|
|
79
|
-
test("extractQueryTags: known-tag mention is case-insensitive", () => {
|
|
80
|
-
const tags = extractQueryTags("PLANNING 进度", ["planning"]);
|
|
81
|
-
assert.deepEqual(tags, ["planning"]);
|
|
82
|
-
});
|
|
1
|
+
// v0.6.5 整合边界测试:跨 v0.6.1-0.6.4 的边界场景。
|
|
2
|
+
// 覆盖:循环 wiki-link / 空 tag 清除 / 超长 tag 丢弃 / 多 tag 目录分组 /
|
|
3
|
+
// autoTag 非法输出 fail-safe / tag 搜索大小写。
|
|
4
|
+
import { test } from "node:test";
|
|
5
|
+
import assert from "node:assert/strict";
|
|
6
|
+
import { createStore } from "../src/store.js";
|
|
7
|
+
import { createService } from "../src/service.js";
|
|
8
|
+
import { parseWikiLinks } from "../src/parser/wiki-link.js";
|
|
9
|
+
import { parseTags } from "../src/parser/tag.js";
|
|
10
|
+
import { extractQueryTags } from "../src/search/tag-boost.js";
|
|
11
|
+
|
|
12
|
+
function makeService(config = {}) {
|
|
13
|
+
const store = createStore(":memory:");
|
|
14
|
+
const service = createService({ store, mirror: null, config });
|
|
15
|
+
return { store, service };
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
test("wiki-link: mutual links (A→B and B→A) resolve without loops", () => {
|
|
19
|
+
const { store, service } = makeService({ wikiLinkEnabled: true });
|
|
20
|
+
const a = service.saveWithDedupe({
|
|
21
|
+
type: "preference", title: "Alpha", content: "参见 [[Beta]]", importance: 3,
|
|
22
|
+
}).memory;
|
|
23
|
+
const b = service.saveWithDedupe({
|
|
24
|
+
type: "preference", title: "Beta", content: "反链 [[Alpha]]", importance: 3,
|
|
25
|
+
}).memory;
|
|
26
|
+
store.saveWikiLinks({ memoryId: a.id, title: a.title, targets: ["Beta"] });
|
|
27
|
+
store.saveWikiLinks({ memoryId: b.id, title: b.title, targets: ["Alpha"] });
|
|
28
|
+
const ab = service.getForwardLinks(a.id);
|
|
29
|
+
const ba = service.getBacklinks(a.id);
|
|
30
|
+
assert.ok(ab.some((r) => r.target.id === b.id), "A links to B");
|
|
31
|
+
assert.ok(ba.some((r) => r.source.id === b.id), "B backlinks to A");
|
|
32
|
+
store.close();
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
test("tags: setting empty array clears the live tag row", () => {
|
|
36
|
+
const { store } = makeService();
|
|
37
|
+
const a = store.save({ type: "preference", title: "A", content: "c", tags: [] });
|
|
38
|
+
store.setMemoryTags(a.id, ["规划", "前端"]);
|
|
39
|
+
assert.deepEqual(store.getMemoryTags(a.id), ["规划", "前端"]);
|
|
40
|
+
store.setMemoryTags(a.id, []);
|
|
41
|
+
assert.deepEqual(store.getMemoryTags(a.id), []);
|
|
42
|
+
store.close();
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
test("parseTags: over-length and invalid tags are dropped", () => {
|
|
46
|
+
const out = parseTags("#短 #这是一个超过二十个字符的超级长标签 #ok_123 #带-连字符");
|
|
47
|
+
assert.ok(out.includes("短"), "short CJK tag kept");
|
|
48
|
+
assert.ok(out.includes("ok_123"), "alnum underscore kept");
|
|
49
|
+
assert.ok(out.includes("带-连字符"), "hyphen kept");
|
|
50
|
+
assert.ok(!out.some((t) => t.length > 20), "no tag exceeds 20 chars");
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
test("tag search: matches case-insensitively and composes with keywords", async () => {
|
|
54
|
+
const { store, service } = makeService();
|
|
55
|
+
const a = service.saveWithDedupe({
|
|
56
|
+
type: "preference", title: "规划", content: "博客重构", importance: 3,
|
|
57
|
+
}).memory;
|
|
58
|
+
store.setMemoryTags(a.id, ["规划"]);
|
|
59
|
+
const r = await service.searchMemories("tag:规划 博客", {
|
|
60
|
+
mode: "keyword", limit: 10, useRerank: false,
|
|
61
|
+
});
|
|
62
|
+
assert.ok(r.some((m) => m.id === a.id), "tag: prefix + keyword composition");
|
|
63
|
+
store.close();
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
test("directory: many-tag memory appears under every tag group", () => {
|
|
67
|
+
const { store, service } = makeService();
|
|
68
|
+
const a = store.save({ type: "preference", title: "多标签", content: "c", tags: [] });
|
|
69
|
+
store.setMemoryTags(a.id, ["规划", "前端", "博客"]);
|
|
70
|
+
const dir = store.getDirectory();
|
|
71
|
+
const groups = dir.groups.filter((g) => g.tag === "规划" || g.tag === "前端" || g.tag === "博客");
|
|
72
|
+
assert.equal(groups.length, 3, "one group per tag");
|
|
73
|
+
for (const g of groups) {
|
|
74
|
+
assert.ok(g.memories.some((m) => m.id === a.id), `memory under ${g.tag}`);
|
|
75
|
+
}
|
|
76
|
+
store.close();
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
test("extractQueryTags: known-tag mention is case-insensitive", () => {
|
|
80
|
+
const tags = extractQueryTags("PLANNING 进度", ["planning"]);
|
|
81
|
+
assert.deepEqual(tags, ["planning"]);
|
|
82
|
+
});
|