@modusensus/dsh-mneme 0.6.6 → 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.
Files changed (117) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +463 -457
  3. package/cordis.patch.yml +15 -15
  4. package/lib/api.js +783 -693
  5. package/lib/client.js +1757 -1656
  6. package/lib/commands.js +64 -64
  7. package/lib/config.js +288 -288
  8. package/lib/dream/clustering.js +118 -118
  9. package/lib/dream/decisions.js +439 -439
  10. package/lib/dream/sleep.js +561 -554
  11. package/lib/dream/tag-extractor.js +156 -156
  12. package/lib/dream.js +935 -929
  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 -142
  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 -75
  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 -693
  41. package/src/commands.js +64 -64
  42. package/src/config.js +288 -288
  43. package/src/dream/clustering.js +118 -118
  44. package/src/dream/decisions.js +439 -439
  45. package/src/dream/sleep.js +561 -554
  46. package/src/dream/tag-extractor.js +156 -156
  47. package/src/dream.js +935 -929
  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 -142
  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 -549
  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 +903 -901
  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 -101
  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
package/src/embedding.js CHANGED
@@ -1,154 +1,154 @@
1
- // OpenAI-compatible embedding client for vector search. DSH's LLM service is
2
- // chat-only, so dsh-mneme calls an external `/embeddings` endpoint itself.
3
- // Works with OpenAI, SiliconFlow, Zhipu, local Ollama (via OpenAI-compatible
4
- // proxy) and any provider exposing the standard embeddings API.
5
- const DEFAULT_TIMEOUT_MS = 15000;
6
-
7
- /** djb2 — stable, fast fingerprint for a provider/model string. Mirrors the
8
- * hash used by the local embedders so all backends share one fingerprint
9
- * format (model#hex) for vector_meta consistency checks. */
10
- function hashString(s) {
11
- let h = 5381;
12
- for (let i = 0; i < s.length; i++) h = ((h << 5) + h + s.charCodeAt(i)) >>> 0;
13
- return h.toString(16);
14
- }
15
-
16
- /** Full provider+model fingerprint used for index-consistency checks. */
17
- function modelHashOf(model) {
18
- return `${model}#${hashString(model)}`;
19
- }
20
-
21
- /** Normalize a configured baseUrl into the full embeddings endpoint URL. */
22
- function embeddingsUrl(baseUrl) {
23
- const base = String(baseUrl ?? "").trim().replace(/\/+$/, "");
24
- if (!base) return "";
25
- // Accept both "https://host/v1" and a full path ending in /embeddings.
26
- if (/\/embeddings$/i.test(base)) return base;
27
- return `${base}/embeddings`;
28
- }
29
-
30
- /**
31
- * Call the embeddings API for one text. Resolves to a Float64 array, or null
32
- * when the provider is not configured, the call fails, or the response is
33
- * unusable. Never throws: failures degrade to keyword search.
34
- */
35
- export async function embedText({ baseUrl, apiKey, model }, text) {
36
- const url = embeddingsUrl(baseUrl);
37
- if (!url || !apiKey || !model || !text) return null;
38
- let res;
39
- try {
40
- res = await fetch(url, {
41
- method: "POST",
42
- headers: {
43
- "Content-Type": "application/json",
44
- "Authorization": `Bearer ${apiKey}`
45
- },
46
- body: JSON.stringify({ model, input: String(text).slice(0, 8000) }),
47
- signal: AbortSignal.timeout(DEFAULT_TIMEOUT_MS)
48
- });
49
- } catch {
50
- return null;
51
- }
52
- if (!res.ok) return null;
53
- let body;
54
- try {
55
- body = await res.json();
56
- } catch {
57
- return null;
58
- }
59
- const vec = body?.data?.[0]?.embedding;
60
- return Array.isArray(vec) && vec.length ? Array.from(vec) : null;
61
- }
62
-
63
- /**
64
- * Embedder bound to the current settings + store: on each write it re-embeds
65
- * the row's title+content and stores the vector. Failures are swallowed so a
66
- * flaky embedding endpoint never breaks memory writes.
67
- *
68
- * `vectorIndex` (optional) is the vector_meta fingerprint holder: after any
69
- * successful embed the model that produced the vectors is recorded, so the
70
- * index can detect drift and the auto-reindex backfill knows what to rebuild.
71
- */
72
- export function createEmbedder({ store, settings, logger, vectorIndex }) {
73
- // Dimension of the most recent successful embed, exposed for fingerprinting.
74
- let _dimension = 0;
75
-
76
- /** Record the producing model fingerprint in vector_meta (best-effort). */
77
- function markModel(cfg, dimension) {
78
- if (!vectorIndex || typeof vectorIndex.markModel !== "function") return;
79
- try {
80
- vectorIndex.markModel(modelHashOf(cfg.model), dimension);
81
- } catch { /* metadata write is best-effort */ }
82
- }
83
-
84
- async function embedFor(id, title, content) {
85
- const cfg = settings.getVectorConfig();
86
- if (!cfg?.enabled || !cfg.baseUrl || !cfg.apiKey || !cfg.model) return;
87
- const text = [title, content].filter(Boolean).join("\n");
88
- const vector = await embedText(cfg, text);
89
- if (vector) {
90
- store.setEmbedding(id, vector);
91
- _dimension = vector.length;
92
- // Bug3: record which model produced the current vectors so the index can
93
- // detect drift and skip a redundant backfill when nothing changed.
94
- markModel(cfg, vector.length);
95
- logger?.info?.(`[dsh-mneme] embedded memory ${id} (dim=${vector.length})`);
96
- }
97
- }
98
-
99
- return {
100
- /** Fire-and-forget re-embed of a memory after any write. */
101
- schedule(memory) {
102
- if (!memory?.id) return;
103
- embedFor(memory.id, memory.title, memory.content).catch(() => {});
104
- },
105
-
106
- /** Embed one text and return its vector (null on failure/disabled). */
107
- async embed(query) {
108
- const cfg = settings.getVectorConfig();
109
- if (!cfg?.enabled || !cfg.baseUrl || !cfg.apiKey || !cfg.model) return null;
110
- const vector = await embedText(cfg, query);
111
- if (vector) _dimension = vector.length;
112
- return vector;
113
- },
114
-
115
- // Bug1: single-text adapter. Local/ollama embedders expose embedSingle
116
- // natively; the legacy OpenAI-compatible client only has embed. This
117
- // adapter unifies the interface so vector-index rebuildIndex (which guards
118
- // on `typeof embedder.embedSingle === "function"`) accepts this embedder.
119
- async embedSingle(text) {
120
- if (typeof this.embed === "function") return this.embed(text);
121
- return null;
122
- },
123
-
124
- /** Model fingerprint (model#hex), or undefined when not configured. */
125
- get modelHash() {
126
- const cfg = settings.getVectorConfig();
127
- return cfg?.enabled && cfg.model ? modelHashOf(cfg.model) : undefined;
128
- },
129
-
130
- /** Dimension of the last successful embed (0 when never embedded). */
131
- get dimension() {
132
- return _dimension || undefined;
133
- },
134
-
135
- /** Batch re-index rows still missing an embedding. */
136
- async reindexMissing(limit = 50) {
137
- const cfg = settings.getVectorConfig();
138
- if (!cfg?.enabled) return { indexed: 0, skipped: 0 };
139
- const rows = store.needsEmbedding(limit);
140
- let indexed = 0;
141
- for (const row of rows) {
142
- const text = [row.title, row.content].filter(Boolean).join("\n");
143
- const vector = await embedText(cfg, text);
144
- if (vector) {
145
- store.setEmbedding(row.id, vector);
146
- _dimension = vector.length;
147
- indexed++;
148
- }
149
- }
150
- if (indexed > 0) markModel(cfg, _dimension || undefined);
151
- return { indexed, skipped: rows.length - indexed };
152
- }
153
- };
154
- }
1
+ // OpenAI-compatible embedding client for vector search. DSH's LLM service is
2
+ // chat-only, so dsh-mneme calls an external `/embeddings` endpoint itself.
3
+ // Works with OpenAI, SiliconFlow, Zhipu, local Ollama (via OpenAI-compatible
4
+ // proxy) and any provider exposing the standard embeddings API.
5
+ const DEFAULT_TIMEOUT_MS = 15000;
6
+
7
+ /** djb2 — stable, fast fingerprint for a provider/model string. Mirrors the
8
+ * hash used by the local embedders so all backends share one fingerprint
9
+ * format (model#hex) for vector_meta consistency checks. */
10
+ function hashString(s) {
11
+ let h = 5381;
12
+ for (let i = 0; i < s.length; i++) h = ((h << 5) + h + s.charCodeAt(i)) >>> 0;
13
+ return h.toString(16);
14
+ }
15
+
16
+ /** Full provider+model fingerprint used for index-consistency checks. */
17
+ function modelHashOf(model) {
18
+ return `${model}#${hashString(model)}`;
19
+ }
20
+
21
+ /** Normalize a configured baseUrl into the full embeddings endpoint URL. */
22
+ function embeddingsUrl(baseUrl) {
23
+ const base = String(baseUrl ?? "").trim().replace(/\/+$/, "");
24
+ if (!base) return "";
25
+ // Accept both "https://host/v1" and a full path ending in /embeddings.
26
+ if (/\/embeddings$/i.test(base)) return base;
27
+ return `${base}/embeddings`;
28
+ }
29
+
30
+ /**
31
+ * Call the embeddings API for one text. Resolves to a Float64 array, or null
32
+ * when the provider is not configured, the call fails, or the response is
33
+ * unusable. Never throws: failures degrade to keyword search.
34
+ */
35
+ export async function embedText({ baseUrl, apiKey, model }, text) {
36
+ const url = embeddingsUrl(baseUrl);
37
+ if (!url || !apiKey || !model || !text) return null;
38
+ let res;
39
+ try {
40
+ res = await fetch(url, {
41
+ method: "POST",
42
+ headers: {
43
+ "Content-Type": "application/json",
44
+ "Authorization": `Bearer ${apiKey}`
45
+ },
46
+ body: JSON.stringify({ model, input: String(text).slice(0, 8000) }),
47
+ signal: AbortSignal.timeout(DEFAULT_TIMEOUT_MS)
48
+ });
49
+ } catch {
50
+ return null;
51
+ }
52
+ if (!res.ok) return null;
53
+ let body;
54
+ try {
55
+ body = await res.json();
56
+ } catch {
57
+ return null;
58
+ }
59
+ const vec = body?.data?.[0]?.embedding;
60
+ return Array.isArray(vec) && vec.length ? Array.from(vec) : null;
61
+ }
62
+
63
+ /**
64
+ * Embedder bound to the current settings + store: on each write it re-embeds
65
+ * the row's title+content and stores the vector. Failures are swallowed so a
66
+ * flaky embedding endpoint never breaks memory writes.
67
+ *
68
+ * `vectorIndex` (optional) is the vector_meta fingerprint holder: after any
69
+ * successful embed the model that produced the vectors is recorded, so the
70
+ * index can detect drift and the auto-reindex backfill knows what to rebuild.
71
+ */
72
+ export function createEmbedder({ store, settings, logger, vectorIndex }) {
73
+ // Dimension of the most recent successful embed, exposed for fingerprinting.
74
+ let _dimension = 0;
75
+
76
+ /** Record the producing model fingerprint in vector_meta (best-effort). */
77
+ function markModel(cfg, dimension) {
78
+ if (!vectorIndex || typeof vectorIndex.markModel !== "function") return;
79
+ try {
80
+ vectorIndex.markModel(modelHashOf(cfg.model), dimension);
81
+ } catch { /* metadata write is best-effort */ }
82
+ }
83
+
84
+ async function embedFor(id, title, content) {
85
+ const cfg = settings.getVectorConfig();
86
+ if (!cfg?.enabled || !cfg.baseUrl || !cfg.apiKey || !cfg.model) return;
87
+ const text = [title, content].filter(Boolean).join("\n");
88
+ const vector = await embedText(cfg, text);
89
+ if (vector) {
90
+ store.setEmbedding(id, vector);
91
+ _dimension = vector.length;
92
+ // Bug3: record which model produced the current vectors so the index can
93
+ // detect drift and skip a redundant backfill when nothing changed.
94
+ markModel(cfg, vector.length);
95
+ logger?.info?.(`[dsh-mneme] embedded memory ${id} (dim=${vector.length})`);
96
+ }
97
+ }
98
+
99
+ return {
100
+ /** Fire-and-forget re-embed of a memory after any write. */
101
+ schedule(memory) {
102
+ if (!memory?.id) return;
103
+ embedFor(memory.id, memory.title, memory.content).catch(() => {});
104
+ },
105
+
106
+ /** Embed one text and return its vector (null on failure/disabled). */
107
+ async embed(query) {
108
+ const cfg = settings.getVectorConfig();
109
+ if (!cfg?.enabled || !cfg.baseUrl || !cfg.apiKey || !cfg.model) return null;
110
+ const vector = await embedText(cfg, query);
111
+ if (vector) _dimension = vector.length;
112
+ return vector;
113
+ },
114
+
115
+ // Bug1: single-text adapter. Local/ollama embedders expose embedSingle
116
+ // natively; the legacy OpenAI-compatible client only has embed. This
117
+ // adapter unifies the interface so vector-index rebuildIndex (which guards
118
+ // on `typeof embedder.embedSingle === "function"`) accepts this embedder.
119
+ async embedSingle(text) {
120
+ if (typeof this.embed === "function") return this.embed(text);
121
+ return null;
122
+ },
123
+
124
+ /** Model fingerprint (model#hex), or undefined when not configured. */
125
+ get modelHash() {
126
+ const cfg = settings.getVectorConfig();
127
+ return cfg?.enabled && cfg.model ? modelHashOf(cfg.model) : undefined;
128
+ },
129
+
130
+ /** Dimension of the last successful embed (0 when never embedded). */
131
+ get dimension() {
132
+ return _dimension || undefined;
133
+ },
134
+
135
+ /** Batch re-index rows still missing an embedding. */
136
+ async reindexMissing(limit = 50) {
137
+ const cfg = settings.getVectorConfig();
138
+ if (!cfg?.enabled) return { indexed: 0, skipped: 0 };
139
+ const rows = store.needsEmbedding(limit);
140
+ let indexed = 0;
141
+ for (const row of rows) {
142
+ const text = [row.title, row.content].filter(Boolean).join("\n");
143
+ const vector = await embedText(cfg, text);
144
+ if (vector) {
145
+ store.setEmbedding(row.id, vector);
146
+ _dimension = vector.length;
147
+ indexed++;
148
+ }
149
+ }
150
+ if (indexed > 0) markModel(cfg, _dimension || undefined);
151
+ return { indexed, skipped: rows.length - indexed };
152
+ }
153
+ };
154
+ }