@modusensus/dsh-mneme 0.6.8 → 0.6.10

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 (117) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +468 -463
  3. package/cordis.patch.yml +15 -15
  4. package/lib/api.js +783 -783
  5. package/lib/client.js +1754 -1757
  6. package/lib/commands.js +64 -64
  7. package/lib/config.js +298 -288
  8. package/lib/dream/clustering.js +118 -118
  9. package/lib/dream/decisions.js +488 -439
  10. package/lib/dream/sleep.js +561 -561
  11. package/lib/dream/tag-extractor.js +156 -156
  12. package/lib/dream.js +958 -935
  13. package/lib/embedding.js +154 -154
  14. package/lib/entities/extractor.js +242 -242
  15. package/lib/hot-memory.js +53 -53
  16. package/lib/index.js +361 -361
  17. package/lib/inject.js +208 -208
  18. package/lib/local-embedder.js +282 -282
  19. package/lib/mirror.js +170 -170
  20. package/lib/parser/tag.js +59 -59
  21. package/lib/parser/wiki-link.js +38 -38
  22. package/lib/quality-filter.js +123 -123
  23. package/lib/reranker.js +218 -218
  24. package/lib/search/adaptive.js +22 -22
  25. package/lib/search/bm25.js +96 -96
  26. package/lib/search/tag-boost.js +61 -61
  27. package/lib/service.js +1726 -1726
  28. package/lib/settings.js +172 -172
  29. package/lib/store.js +2238 -2238
  30. package/lib/summarize.js +236 -236
  31. package/lib/tools.js +290 -290
  32. package/lib/vector-index.js +116 -116
  33. package/package.json +80 -80
  34. package/scripts/benchmark-embed.js +201 -201
  35. package/scripts/benchmark-recall.js +133 -133
  36. package/scripts/benchmark-rerank.js +166 -166
  37. package/scripts/e2e-dsh.js +218 -218
  38. package/scripts/stress-dsh.js +255 -255
  39. package/scripts/sync-lib.js +52 -52
  40. package/src/api.js +783 -783
  41. package/src/commands.js +64 -64
  42. package/src/config.js +298 -288
  43. package/src/dream/clustering.js +118 -118
  44. package/src/dream/decisions.js +488 -439
  45. package/src/dream/sleep.js +561 -561
  46. package/src/dream/tag-extractor.js +156 -156
  47. package/src/dream.js +958 -935
  48. package/src/embedding.js +154 -154
  49. package/src/entities/extractor.js +242 -242
  50. package/src/hot-memory.js +53 -53
  51. package/src/index.js +361 -361
  52. package/src/inject.js +208 -208
  53. package/src/local-embedder.js +282 -282
  54. package/src/mirror.js +170 -170
  55. package/src/parser/tag.js +59 -59
  56. package/src/parser/wiki-link.js +38 -38
  57. package/src/quality-filter.js +123 -123
  58. package/src/reranker.js +218 -218
  59. package/src/search/adaptive.js +22 -22
  60. package/src/search/bm25.js +96 -96
  61. package/src/search/tag-boost.js +61 -61
  62. package/src/service.js +1726 -1726
  63. package/src/settings.js +172 -172
  64. package/src/store.js +2238 -2238
  65. package/src/summarize.js +236 -236
  66. package/src/tools.js +290 -290
  67. package/src/vector-index.js +116 -116
  68. package/test/api.test.js +594 -594
  69. package/test/audit.test.js +448 -448
  70. package/test/benchmark.test.js +35 -35
  71. package/test/boundary-v0625.test.js +82 -82
  72. package/test/client.test.js +368 -368
  73. package/test/clustering.test.js +100 -100
  74. package/test/commands.test.js +69 -69
  75. package/test/config.test.js +50 -50
  76. package/test/conflict-freeze.test.js +290 -290
  77. package/test/directory.test.js +134 -134
  78. package/test/dream.test.js +1060 -903
  79. package/test/entities.test.js +522 -522
  80. package/test/epistemic.test.js +298 -298
  81. package/test/fnew-0112.test.js +311 -311
  82. package/test/fnew-03.test.js +422 -422
  83. package/test/graph-api.test.js +175 -175
  84. package/test/helpers/dream-mock.js +82 -82
  85. package/test/hot-memory.test.js +174 -174
  86. package/test/inject.test.js +103 -103
  87. package/test/llm-audit.test.js +279 -279
  88. package/test/local-embedder.test.js +227 -227
  89. package/test/mirror-dirty.test.js +424 -424
  90. package/test/mirror-edit-digest.test.js +187 -187
  91. package/test/mirror-generation.test.js +499 -499
  92. package/test/mirror.test.js +249 -249
  93. package/test/normalize-decisions.test.js +120 -120
  94. package/test/peer-blockers.test.js +190 -190
  95. package/test/policy-epoch.test.js +259 -259
  96. package/test/provenance.test.js +103 -103
  97. package/test/quality-filter.test.js +118 -118
  98. package/test/reasoning-effort.test.js +199 -199
  99. package/test/recall-evals.test.js +235 -235
  100. package/test/recall-layer.test.js +315 -315
  101. package/test/receipt-chain.test.js +451 -451
  102. package/test/reflection.test.js +226 -226
  103. package/test/reranker.test.js +240 -240
  104. package/test/search-fusion.test.js +90 -90
  105. package/test/semantic.test.js +124 -124
  106. package/test/service-search.test.js +199 -199
  107. package/test/service.test.js +435 -435
  108. package/test/settings.test.js +118 -118
  109. package/test/sleep.test.js +365 -365
  110. package/test/store.test.js +436 -436
  111. package/test/stress.test.js +209 -209
  112. package/test/summarize.test.js +191 -191
  113. package/test/tag-boost.test.js +125 -125
  114. package/test/tag.test.js +312 -312
  115. package/test/tools.test.js +285 -285
  116. package/test/vector-index.test.js +221 -221
  117. package/test/wiki-link.test.js +332 -332
@@ -1,175 +1,175 @@
1
- import test from "node:test";
2
- import assert from "node:assert/strict";
3
- import { EventEmitter } from "node:events";
4
- import { createStore } from "../src/store.js";
5
- import { createService } from "../src/service.js";
6
- import { createApi } from "../src/api.js";
7
- import { createSettings } from "../src/settings.js";
8
-
9
- // Ego-graph read API (graph panel P1). The routes under test:
10
- // GET /api/dsh-mneme/semantic/graph/ego?entity=&depth=&limit=
11
- // GET /api/dsh-mneme/semantic/graph/entity-attrs?entity=
12
- // Both are read-only: they must stay reachable without an apiToken, exactly
13
- // like list/search/semantic.
14
-
15
- class FakeRes extends EventEmitter {
16
- constructor() { super(); this.statusCode = 200; this.body = ""; }
17
- writeHead(code, headers) { this.statusCode = code; this.headers = headers; return this; }
18
- end(text) { this.body = text ?? ""; this.emit("end"); return this; }
19
- }
20
-
21
- function req(path) {
22
- const r = new EventEmitter();
23
- r.url = path;
24
- r.method = "GET";
25
- r.headers = {};
26
- return r;
27
- }
28
-
29
- function setup(apiToken = "") {
30
- const store = createStore(":memory:");
31
- const service = createService({ store, mirror: null, config: {} });
32
- const settings = createSettings(store.db);
33
- const commands = { add: () => {}, remove: () => {}, list: () => [] };
34
- const routes = [];
35
- const ctx = { webServer: { register(route) { routes.push(route); return () => {}; } } };
36
- createApi(ctx, service, settings, commands, null, undefined, apiToken);
37
- return { store, service, routes };
38
- }
39
-
40
- function graphRoute(routes, path) {
41
- return routes.find((r) => r.path === path);
42
- }
43
-
44
- function buildChain(service, names, linkType = "related_to") {
45
- // names → entities; each consecutive pair gets one relation. Returns a
46
- // name→entity map so tests can assert on ids.
47
- const map = new Map();
48
- for (const n of names) map.set(n, service.createEntity({ name: n, type: "concept" }));
49
- for (let i = 0; i < names.length - 1; i++) {
50
- service.saveRelation({
51
- from_entity: map.get(names[i]).id,
52
- to_entity: map.get(names[i + 1]).id,
53
- relation_type: linkType
54
- });
55
- }
56
- return map;
57
- }
58
-
59
- test("ego route is registered and open without apiToken", async () => {
60
- const { routes } = setup("secret-token");
61
- const ego = graphRoute(routes, "/api/dsh-mneme/semantic/graph/ego");
62
- const attrs = graphRoute(routes, "/api/dsh-mneme/semantic/graph/entity-attrs");
63
- assert.ok(ego, "ego route must be registered");
64
- assert.ok(attrs, "entity-attrs route must be registered");
65
- // read-only: no 401 even with a token configured
66
- const res = new FakeRes();
67
- await ego.handler(req("/api/dsh-mneme/semantic/graph/ego"), res);
68
- assert.equal(res.statusCode, 400, "missing param is a 400, not a 401");
69
- });
70
-
71
- test("ego depth 1 returns root + direct neighbors with distances", async () => {
72
- const { routes, service } = setup();
73
- const map = buildChain(service, ["A", "B", "C"]);
74
- const route = graphRoute(routes, "/api/dsh-mneme/semantic/graph/ego");
75
- const res = new FakeRes();
76
- await route.handler(req("/api/dsh-mneme/semantic/graph/ego?entity=A&depth=1"), res);
77
- assert.equal(res.statusCode, 200);
78
- const data = JSON.parse(res.body);
79
- assert.equal(data.root.name, "A");
80
- assert.equal(data.nodes.length, 2, "root + B only (C is 2 hops)");
81
- assert.equal(data.edges.length, 1);
82
- const b = data.nodes.find((n) => n.name === "B");
83
- assert.equal(b.distance, 1);
84
- assert.equal(data.nodes.find((n) => n.name === "A").distance, 0);
85
- // edge shape: ids + relation_type, memory_id nullable
86
- const edge = data.edges[0];
87
- assert.ok(edge.id && edge.from && edge.to);
88
- assert.equal(edge.relation_type, "related_to");
89
- assert.equal(edge.memory_id, null);
90
- });
91
-
92
- test("ego depth 2 includes 2-hop nodes, not 3-hop", async () => {
93
- const { routes, service } = setup();
94
- buildChain(service, ["A", "B", "C", "D"]);
95
- const route = graphRoute(routes, "/api/dsh-mneme/semantic/graph/ego");
96
- const res = new FakeRes();
97
- await route.handler(req("/api/dsh-mneme/semantic/graph/ego?entity=A&depth=2"), res);
98
- const data = JSON.parse(res.body);
99
- const names = data.nodes.map((n) => n.name).sort();
100
- assert.deepEqual(names, ["A", "B", "C"], "D is 3 hops away and must be excluded");
101
- assert.equal(data.nodes.find((n) => n.name === "C").distance, 2);
102
- assert.equal(data.edges.length, 2);
103
- });
104
-
105
- test("ego respects limit and keeps only in-graph edges", async () => {
106
- const { routes, service } = setup();
107
- const map = buildChain(service, ["A", "B", "C"]);
108
- const route = graphRoute(routes, "/api/dsh-mneme/semantic/graph/ego");
109
- const res = new FakeRes();
110
- await route.handler(req("/api/dsh-mneme/semantic/graph/ego?entity=A&depth=2&limit=2"), res);
111
- const data = JSON.parse(res.body);
112
- assert.equal(data.nodes.length, 2, "limit caps node count");
113
- assert.equal(data.edges.length, 1, "edges to cut nodes are dropped");
114
- });
115
-
116
- test("ego reports 404 for unknown entity and 400 without entity", async () => {
117
- const { routes } = setup();
118
- const route = graphRoute(routes, "/api/dsh-mneme/semantic/graph/ego");
119
- let res = new FakeRes();
120
- await route.handler(req("/api/dsh-mneme/semantic/graph/ego?entity=ghost"), res);
121
- assert.equal(res.statusCode, 404);
122
- assert.equal(JSON.parse(res.body).error, "entity-not-found");
123
- res = new FakeRes();
124
- await route.handler(req("/api/dsh-mneme/semantic/graph/ego"), res);
125
- assert.equal(res.statusCode, 400);
126
- assert.equal(JSON.parse(res.body).error, "missing-entity");
127
- });
128
-
129
- test("entity-attrs returns current valid attrs only", async () => {
130
- const { routes, service } = setup();
131
- const mem = service.saveWithDedupe({ type: "project", title: "t", content: "c" });
132
- const entity = service.createEntity({ name: "X", type: "technology" });
133
- service.saveAttr({ entity_id: entity.id, attr_key: "version", attr_value: "1", memory_id: mem.id, confidence: 0.9 });
134
- // a second save of the same key invalidates the first: only one row stays valid
135
- service.saveAttr({ entity_id: entity.id, attr_key: "version", attr_value: "2", memory_id: mem.id, confidence: 0.8 });
136
- const route = graphRoute(routes, "/api/dsh-mneme/semantic/graph/entity-attrs");
137
- const res = new FakeRes();
138
- await route.handler(req("/api/dsh-mneme/semantic/graph/entity-attrs?entity=X"), res);
139
- assert.equal(res.statusCode, 200);
140
- const data = JSON.parse(res.body);
141
- assert.equal(data.entity.name, "X");
142
- assert.equal(data.attrs.length, 1);
143
- assert.equal(data.attrs[0].value, "2", "latest valid attr wins");
144
- assert.equal(data.attrs[0].confidence, 0.8);
145
- // unknown / missing entity
146
- let r2 = new FakeRes();
147
- await route.handler(req("/api/dsh-mneme/semantic/graph/entity-attrs?entity=nope"), r2);
148
- assert.equal(r2.statusCode, 404);
149
- r2 = new FakeRes();
150
- await route.handler(req("/api/dsh-mneme/semantic/graph/entity-attrs"), r2);
151
- assert.equal(r2.statusCode, 400);
152
- });
153
-
154
- test("ego 2-hop over 100+ nodes stays under 50ms (spec §7)", async () => {
155
- const { routes, service } = setup();
156
- // star-of-stars: hub → 20 spokes, each spoke → 5 leaves = 121 nodes, 120 edges
157
- const hub = service.createEntity({ name: "hub", type: "project" });
158
- for (let i = 0; i < 20; i++) {
159
- const spoke = service.createEntity({ name: `spoke-${i}`, type: "technology" });
160
- service.saveRelation({ from_entity: hub.id, to_entity: spoke.id, relation_type: "uses" });
161
- for (let j = 0; j < 5; j++) {
162
- const leaf = service.createEntity({ name: `leaf-${i}-${j}`, type: "concept" });
163
- service.saveRelation({ from_entity: spoke.id, to_entity: leaf.id, relation_type: "related_to" });
164
- }
165
- }
166
- const route = graphRoute(routes, "/api/dsh-mneme/semantic/graph/ego");
167
- const res = new FakeRes();
168
- const start = process.hrtime.bigint();
169
- await route.handler(req("/api/dsh-mneme/semantic/graph/ego?entity=hub&depth=2&limit=100"), res);
170
- const ms = Number(process.hrtime.bigint() - start) / 1e6;
171
- const data = JSON.parse(res.body);
172
- assert.equal(data.nodes.length, 100, "limit caps the traversal");
173
- assert.ok(data.edges.length > 0);
174
- assert.ok(ms < 50, `2-hop query took ${ms.toFixed(1)}ms, spec budget is 50ms`);
175
- });
1
+ import test from "node:test";
2
+ import assert from "node:assert/strict";
3
+ import { EventEmitter } from "node:events";
4
+ import { createStore } from "../src/store.js";
5
+ import { createService } from "../src/service.js";
6
+ import { createApi } from "../src/api.js";
7
+ import { createSettings } from "../src/settings.js";
8
+
9
+ // Ego-graph read API (graph panel P1). The routes under test:
10
+ // GET /api/dsh-mneme/semantic/graph/ego?entity=&depth=&limit=
11
+ // GET /api/dsh-mneme/semantic/graph/entity-attrs?entity=
12
+ // Both are read-only: they must stay reachable without an apiToken, exactly
13
+ // like list/search/semantic.
14
+
15
+ class FakeRes extends EventEmitter {
16
+ constructor() { super(); this.statusCode = 200; this.body = ""; }
17
+ writeHead(code, headers) { this.statusCode = code; this.headers = headers; return this; }
18
+ end(text) { this.body = text ?? ""; this.emit("end"); return this; }
19
+ }
20
+
21
+ function req(path) {
22
+ const r = new EventEmitter();
23
+ r.url = path;
24
+ r.method = "GET";
25
+ r.headers = {};
26
+ return r;
27
+ }
28
+
29
+ function setup(apiToken = "") {
30
+ const store = createStore(":memory:");
31
+ const service = createService({ store, mirror: null, config: {} });
32
+ const settings = createSettings(store.db);
33
+ const commands = { add: () => {}, remove: () => {}, list: () => [] };
34
+ const routes = [];
35
+ const ctx = { webServer: { register(route) { routes.push(route); return () => {}; } } };
36
+ createApi(ctx, service, settings, commands, null, undefined, apiToken);
37
+ return { store, service, routes };
38
+ }
39
+
40
+ function graphRoute(routes, path) {
41
+ return routes.find((r) => r.path === path);
42
+ }
43
+
44
+ function buildChain(service, names, linkType = "related_to") {
45
+ // names → entities; each consecutive pair gets one relation. Returns a
46
+ // name→entity map so tests can assert on ids.
47
+ const map = new Map();
48
+ for (const n of names) map.set(n, service.createEntity({ name: n, type: "concept" }));
49
+ for (let i = 0; i < names.length - 1; i++) {
50
+ service.saveRelation({
51
+ from_entity: map.get(names[i]).id,
52
+ to_entity: map.get(names[i + 1]).id,
53
+ relation_type: linkType
54
+ });
55
+ }
56
+ return map;
57
+ }
58
+
59
+ test("ego route is registered and open without apiToken", async () => {
60
+ const { routes } = setup("secret-token");
61
+ const ego = graphRoute(routes, "/api/dsh-mneme/semantic/graph/ego");
62
+ const attrs = graphRoute(routes, "/api/dsh-mneme/semantic/graph/entity-attrs");
63
+ assert.ok(ego, "ego route must be registered");
64
+ assert.ok(attrs, "entity-attrs route must be registered");
65
+ // read-only: no 401 even with a token configured
66
+ const res = new FakeRes();
67
+ await ego.handler(req("/api/dsh-mneme/semantic/graph/ego"), res);
68
+ assert.equal(res.statusCode, 400, "missing param is a 400, not a 401");
69
+ });
70
+
71
+ test("ego depth 1 returns root + direct neighbors with distances", async () => {
72
+ const { routes, service } = setup();
73
+ const map = buildChain(service, ["A", "B", "C"]);
74
+ const route = graphRoute(routes, "/api/dsh-mneme/semantic/graph/ego");
75
+ const res = new FakeRes();
76
+ await route.handler(req("/api/dsh-mneme/semantic/graph/ego?entity=A&depth=1"), res);
77
+ assert.equal(res.statusCode, 200);
78
+ const data = JSON.parse(res.body);
79
+ assert.equal(data.root.name, "A");
80
+ assert.equal(data.nodes.length, 2, "root + B only (C is 2 hops)");
81
+ assert.equal(data.edges.length, 1);
82
+ const b = data.nodes.find((n) => n.name === "B");
83
+ assert.equal(b.distance, 1);
84
+ assert.equal(data.nodes.find((n) => n.name === "A").distance, 0);
85
+ // edge shape: ids + relation_type, memory_id nullable
86
+ const edge = data.edges[0];
87
+ assert.ok(edge.id && edge.from && edge.to);
88
+ assert.equal(edge.relation_type, "related_to");
89
+ assert.equal(edge.memory_id, null);
90
+ });
91
+
92
+ test("ego depth 2 includes 2-hop nodes, not 3-hop", async () => {
93
+ const { routes, service } = setup();
94
+ buildChain(service, ["A", "B", "C", "D"]);
95
+ const route = graphRoute(routes, "/api/dsh-mneme/semantic/graph/ego");
96
+ const res = new FakeRes();
97
+ await route.handler(req("/api/dsh-mneme/semantic/graph/ego?entity=A&depth=2"), res);
98
+ const data = JSON.parse(res.body);
99
+ const names = data.nodes.map((n) => n.name).sort();
100
+ assert.deepEqual(names, ["A", "B", "C"], "D is 3 hops away and must be excluded");
101
+ assert.equal(data.nodes.find((n) => n.name === "C").distance, 2);
102
+ assert.equal(data.edges.length, 2);
103
+ });
104
+
105
+ test("ego respects limit and keeps only in-graph edges", async () => {
106
+ const { routes, service } = setup();
107
+ const map = buildChain(service, ["A", "B", "C"]);
108
+ const route = graphRoute(routes, "/api/dsh-mneme/semantic/graph/ego");
109
+ const res = new FakeRes();
110
+ await route.handler(req("/api/dsh-mneme/semantic/graph/ego?entity=A&depth=2&limit=2"), res);
111
+ const data = JSON.parse(res.body);
112
+ assert.equal(data.nodes.length, 2, "limit caps node count");
113
+ assert.equal(data.edges.length, 1, "edges to cut nodes are dropped");
114
+ });
115
+
116
+ test("ego reports 404 for unknown entity and 400 without entity", async () => {
117
+ const { routes } = setup();
118
+ const route = graphRoute(routes, "/api/dsh-mneme/semantic/graph/ego");
119
+ let res = new FakeRes();
120
+ await route.handler(req("/api/dsh-mneme/semantic/graph/ego?entity=ghost"), res);
121
+ assert.equal(res.statusCode, 404);
122
+ assert.equal(JSON.parse(res.body).error, "entity-not-found");
123
+ res = new FakeRes();
124
+ await route.handler(req("/api/dsh-mneme/semantic/graph/ego"), res);
125
+ assert.equal(res.statusCode, 400);
126
+ assert.equal(JSON.parse(res.body).error, "missing-entity");
127
+ });
128
+
129
+ test("entity-attrs returns current valid attrs only", async () => {
130
+ const { routes, service } = setup();
131
+ const mem = service.saveWithDedupe({ type: "project", title: "t", content: "c" });
132
+ const entity = service.createEntity({ name: "X", type: "technology" });
133
+ service.saveAttr({ entity_id: entity.id, attr_key: "version", attr_value: "1", memory_id: mem.id, confidence: 0.9 });
134
+ // a second save of the same key invalidates the first: only one row stays valid
135
+ service.saveAttr({ entity_id: entity.id, attr_key: "version", attr_value: "2", memory_id: mem.id, confidence: 0.8 });
136
+ const route = graphRoute(routes, "/api/dsh-mneme/semantic/graph/entity-attrs");
137
+ const res = new FakeRes();
138
+ await route.handler(req("/api/dsh-mneme/semantic/graph/entity-attrs?entity=X"), res);
139
+ assert.equal(res.statusCode, 200);
140
+ const data = JSON.parse(res.body);
141
+ assert.equal(data.entity.name, "X");
142
+ assert.equal(data.attrs.length, 1);
143
+ assert.equal(data.attrs[0].value, "2", "latest valid attr wins");
144
+ assert.equal(data.attrs[0].confidence, 0.8);
145
+ // unknown / missing entity
146
+ let r2 = new FakeRes();
147
+ await route.handler(req("/api/dsh-mneme/semantic/graph/entity-attrs?entity=nope"), r2);
148
+ assert.equal(r2.statusCode, 404);
149
+ r2 = new FakeRes();
150
+ await route.handler(req("/api/dsh-mneme/semantic/graph/entity-attrs"), r2);
151
+ assert.equal(r2.statusCode, 400);
152
+ });
153
+
154
+ test("ego 2-hop over 100+ nodes stays under 50ms (spec §7)", async () => {
155
+ const { routes, service } = setup();
156
+ // star-of-stars: hub → 20 spokes, each spoke → 5 leaves = 121 nodes, 120 edges
157
+ const hub = service.createEntity({ name: "hub", type: "project" });
158
+ for (let i = 0; i < 20; i++) {
159
+ const spoke = service.createEntity({ name: `spoke-${i}`, type: "technology" });
160
+ service.saveRelation({ from_entity: hub.id, to_entity: spoke.id, relation_type: "uses" });
161
+ for (let j = 0; j < 5; j++) {
162
+ const leaf = service.createEntity({ name: `leaf-${i}-${j}`, type: "concept" });
163
+ service.saveRelation({ from_entity: spoke.id, to_entity: leaf.id, relation_type: "related_to" });
164
+ }
165
+ }
166
+ const route = graphRoute(routes, "/api/dsh-mneme/semantic/graph/ego");
167
+ const res = new FakeRes();
168
+ const start = process.hrtime.bigint();
169
+ await route.handler(req("/api/dsh-mneme/semantic/graph/ego?entity=hub&depth=2&limit=100"), res);
170
+ const ms = Number(process.hrtime.bigint() - start) / 1e6;
171
+ const data = JSON.parse(res.body);
172
+ assert.equal(data.nodes.length, 100, "limit caps the traversal");
173
+ assert.ok(data.edges.length > 0);
174
+ assert.ok(ms < 50, `2-hop query took ${ms.toFixed(1)}ms, spec budget is 50ms`);
175
+ });
@@ -1,82 +1,82 @@
1
- // test/helpers/dream-mock.js
2
- // 共享的确定性 LLM 测试桩:consolidation 决策生成器 + 最小 DSH ctx。
3
- // 被 scripts/stress-dsh.js 与 test/stress.test.js 共用,保证压测与单测
4
- // 走同一套"LLM 行为",避免两边决策逻辑漂移。
5
-
6
- export function parseEntries(listText) {
7
- return [...listText.matchAll(
8
- /id=([^\s|]+)\s*\|\s*type=(\w+)\s*\|\s*importance=(\d+)\s*\|\s*updated=([^\s|]+)\s*\|\s*title=([^|]*)/g
9
- )].map((m) => ({ id: m[1], type: m[2], importance: Number(m[3]), updated: m[4], title: m[5].trim() }));
10
- }
11
-
12
- /**
13
- * 长会话检索的确定性决策:title 含「变体」→ archive,其余 keep。
14
- */
15
- export function sessionDecisions(listText) {
16
- const entries = parseEntries(listText);
17
- const decisions = [];
18
- const claimed = new Set();
19
- for (const e of entries) {
20
- if (e.title.includes("变体")) {
21
- decisions.push({ action: "archive", ids: [e.id], reason: "stale variant" });
22
- claimed.add(e.id);
23
- }
24
- }
25
- for (const e of entries) {
26
- if (!claimed.has(e.id)) decisions.push({ action: "keep", ids: [e.id] });
27
- }
28
- return JSON.stringify(decisions);
29
- }
30
-
31
- /**
32
- * 冲突裁决的确定性决策:title 以「(旧)」结尾 → conflict(胜者为同主题
33
- * 不带「(旧)」者),无对手 → keep。同一快照必然产出同一决策。
34
- */
35
- export function arbitrationDecisions(listText) {
36
- const entries = parseEntries(listText);
37
- const byKey = new Map();
38
- for (const e of entries) {
39
- const key = e.title.replace(/\(旧\)$/, "").trim();
40
- if (!byKey.has(key)) byKey.set(key, []);
41
- byKey.get(key).push(e);
42
- }
43
- const decisions = [];
44
- const claimed = new Set();
45
- for (const group of byKey.values()) {
46
- const loser = group.find((e) => e.title.includes("(旧)"));
47
- const winner = group.find((e) => !e.title.includes("(旧)"));
48
- if (winner && loser) {
49
- decisions.push({ action: "conflict", winner: winner.id, loser: loser.id, reason: "新信息覆盖旧信息" });
50
- claimed.add(winner.id);
51
- claimed.add(loser.id);
52
- continue;
53
- }
54
- for (const e of group) {
55
- if (!claimed.has(e.id)) decisions.push({ action: "keep", ids: [e.id] });
56
- claimed.add(e.id);
57
- }
58
- }
59
- return JSON.stringify(decisions);
60
- }
61
-
62
- /**
63
- * 最小 DSH ctx:consolidation 用 onConsolidation(listText) 产出决策,
64
- * summary 返回固定文本。
65
- */
66
- export function mockCtx({ onConsolidation, summaryText = "记忆库总览:用户偏好中文;关键决策已巩固。" } = {}) {
67
- return {
68
- logger: { warn: () => {} },
69
- agentDefaultModel: { currentSelection: () => ({ provider: "mock", model: "stress-model" }) },
70
- llm: {
71
- async *stream(options) {
72
- const userText = options.messages.find((m) => m.role === "user")?.content?.[0]?.text ?? "";
73
- if (userText.startsWith("id=")) {
74
- yield { type: "text-delta", index: 0, text: onConsolidation ? onConsolidation(userText) : "[]" };
75
- } else {
76
- yield { type: "text-delta", index: 0, text: summaryText };
77
- }
78
- yield { type: "finish", reason: { kind: "stop" } };
79
- }
80
- }
81
- };
82
- }
1
+ // test/helpers/dream-mock.js
2
+ // 共享的确定性 LLM 测试桩:consolidation 决策生成器 + 最小 DSH ctx。
3
+ // 被 scripts/stress-dsh.js 与 test/stress.test.js 共用,保证压测与单测
4
+ // 走同一套"LLM 行为",避免两边决策逻辑漂移。
5
+
6
+ export function parseEntries(listText) {
7
+ return [...listText.matchAll(
8
+ /id=([^\s|]+)\s*\|\s*type=(\w+)\s*\|\s*importance=(\d+)\s*\|\s*updated=([^\s|]+)\s*\|\s*title=([^|]*)/g
9
+ )].map((m) => ({ id: m[1], type: m[2], importance: Number(m[3]), updated: m[4], title: m[5].trim() }));
10
+ }
11
+
12
+ /**
13
+ * 长会话检索的确定性决策:title 含「变体」→ archive,其余 keep。
14
+ */
15
+ export function sessionDecisions(listText) {
16
+ const entries = parseEntries(listText);
17
+ const decisions = [];
18
+ const claimed = new Set();
19
+ for (const e of entries) {
20
+ if (e.title.includes("变体")) {
21
+ decisions.push({ action: "archive", ids: [e.id], reason: "stale variant" });
22
+ claimed.add(e.id);
23
+ }
24
+ }
25
+ for (const e of entries) {
26
+ if (!claimed.has(e.id)) decisions.push({ action: "keep", ids: [e.id] });
27
+ }
28
+ return JSON.stringify(decisions);
29
+ }
30
+
31
+ /**
32
+ * 冲突裁决的确定性决策:title 以「(旧)」结尾 → conflict(胜者为同主题
33
+ * 不带「(旧)」者),无对手 → keep。同一快照必然产出同一决策。
34
+ */
35
+ export function arbitrationDecisions(listText) {
36
+ const entries = parseEntries(listText);
37
+ const byKey = new Map();
38
+ for (const e of entries) {
39
+ const key = e.title.replace(/\(旧\)$/, "").trim();
40
+ if (!byKey.has(key)) byKey.set(key, []);
41
+ byKey.get(key).push(e);
42
+ }
43
+ const decisions = [];
44
+ const claimed = new Set();
45
+ for (const group of byKey.values()) {
46
+ const loser = group.find((e) => e.title.includes("(旧)"));
47
+ const winner = group.find((e) => !e.title.includes("(旧)"));
48
+ if (winner && loser) {
49
+ decisions.push({ action: "conflict", winner: winner.id, loser: loser.id, reason: "新信息覆盖旧信息" });
50
+ claimed.add(winner.id);
51
+ claimed.add(loser.id);
52
+ continue;
53
+ }
54
+ for (const e of group) {
55
+ if (!claimed.has(e.id)) decisions.push({ action: "keep", ids: [e.id] });
56
+ claimed.add(e.id);
57
+ }
58
+ }
59
+ return JSON.stringify(decisions);
60
+ }
61
+
62
+ /**
63
+ * 最小 DSH ctx:consolidation 用 onConsolidation(listText) 产出决策,
64
+ * summary 返回固定文本。
65
+ */
66
+ export function mockCtx({ onConsolidation, summaryText = "记忆库总览:用户偏好中文;关键决策已巩固。" } = {}) {
67
+ return {
68
+ logger: { warn: () => {} },
69
+ agentDefaultModel: { currentSelection: () => ({ provider: "mock", model: "stress-model" }) },
70
+ llm: {
71
+ async *stream(options) {
72
+ const userText = options.messages.find((m) => m.role === "user")?.content?.[0]?.text ?? "";
73
+ if (userText.startsWith("id=")) {
74
+ yield { type: "text-delta", index: 0, text: onConsolidation ? onConsolidation(userText) : "[]" };
75
+ } else {
76
+ yield { type: "text-delta", index: 0, text: summaryText };
77
+ }
78
+ yield { type: "finish", reason: { kind: "stop" } };
79
+ }
80
+ }
81
+ };
82
+ }