@modusensus/dsh-mneme 0.4.7 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -5
- package/lib/api.js +516 -400
- package/lib/client.js +1302 -505
- package/lib/commands.js +64 -64
- package/lib/config.js +252 -223
- package/lib/dream.js +817 -788
- package/lib/embedding.js +154 -154
- package/lib/hot-memory.js +46 -0
- package/lib/index.js +341 -341
- package/lib/inject.js +208 -127
- package/lib/local-embedder.js +282 -276
- package/lib/search/adaptive.js +22 -0
- package/lib/search/bm25.js +96 -0
- package/lib/service.js +135 -8
- package/lib/store.js +24 -0
- package/package.json +9 -1
- package/scripts/benchmark-recall.js +133 -0
- package/src/api.js +117 -1
- package/src/config.js +30 -1
- package/src/dream.js +41 -12
- package/src/hot-memory.js +46 -0
- package/src/inject.js +84 -3
- package/src/local-embedder.js +7 -1
- package/src/search/adaptive.js +22 -0
- package/src/search/bm25.js +96 -0
- package/src/service.js +135 -8
- package/src/store.js +24 -0
- package/test/benchmark.test.js +35 -0
- package/test/client.test.js +205 -15
- package/test/graph-api.test.js +175 -0
- package/test/hot-memory.test.js +145 -0
- package/test/reasoning-effort.test.js +1 -1
- package/test/recall-layer.test.js +2 -2
- package/test/search-fusion.test.js +90 -0
- package/test/service-search.test.js +6 -2
package/lib/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
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
// Session-scoped hot memory (v0.5.0 召回率优化 1.3): a short-term buffer of
|
|
2
|
+
// the latest dialogue rounds, kept strictly apart from the long-term memory
|
|
3
|
+
// store. The injector renders it ahead of the long-term recall block so the
|
|
4
|
+
// agent sees "what we were just talking about" without those rounds ever
|
|
5
|
+
// being persisted as memories. Bounded two ways: maxRounds (count) and
|
|
6
|
+
// maxTokens (budget) — whichever evicts first.
|
|
7
|
+
|
|
8
|
+
// CJK-aware token estimate: one Chinese character ≈ 0.6 tokens (clustering
|
|
9
|
+
// behavior of mainstream tokenizers), one ASCII char ≈ 0.25.
|
|
10
|
+
export function estimateTokens(text) {
|
|
11
|
+
const s = String(text ?? "");
|
|
12
|
+
let cjk = 0;
|
|
13
|
+
for (const ch of s) if (ch >= "\u4e00" && ch <= "\u9fff") cjk++;
|
|
14
|
+
return Math.ceil(cjk * 0.6 + (s.length - cjk) * 0.25);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* @param {{maxRounds?: number, maxTokens?: number}} opts
|
|
19
|
+
* @returns {{add(round: {query: string, response?: string}): void,
|
|
20
|
+
* getContext(): string,
|
|
21
|
+
* rounds(): Array, clear(): void}}
|
|
22
|
+
*/
|
|
23
|
+
export function createHotMemory({ maxRounds = 5, maxTokens = 2000 } = {}) {
|
|
24
|
+
const buffer = [];
|
|
25
|
+
|
|
26
|
+
function totalTokens() {
|
|
27
|
+
return buffer.reduce(
|
|
28
|
+
(sum, r) => sum + estimateTokens(`Q: ${r.query}\nA: ${r.response ?? ""}`),
|
|
29
|
+
0
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
return {
|
|
34
|
+
add(round) {
|
|
35
|
+
if (!round?.query) return;
|
|
36
|
+
buffer.push({ query: String(round.query), response: String(round.response ?? "") });
|
|
37
|
+
while (buffer.length > maxRounds) buffer.shift();
|
|
38
|
+
while (buffer.length > 1 && totalTokens() > maxTokens) buffer.shift();
|
|
39
|
+
},
|
|
40
|
+
getContext() {
|
|
41
|
+
return buffer.map((r) => `Q: ${r.query}\nA: ${r.response ?? ""}`).join("\n\n");
|
|
42
|
+
},
|
|
43
|
+
rounds: () => [...buffer],
|
|
44
|
+
clear() { buffer.length = 0; }
|
|
45
|
+
};
|
|
46
|
+
}
|