virlow-mcp 3.14.0 → 3.14.3
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/dist/cli.js +10 -2
- package/package.json +4 -4
package/dist/cli.js
CHANGED
|
@@ -664,8 +664,16 @@ function findSimilar(embedding, entries, threshold = DEDUPE_REPORT_THRESHOLD) {
|
|
|
664
664
|
}
|
|
665
665
|
|
|
666
666
|
// ../../packages/memory-core/dist/embedder.js
|
|
667
|
-
|
|
667
|
+
var transformers = null;
|
|
668
|
+
function loadTransformers() {
|
|
669
|
+
transformers ??= import("@huggingface/transformers").catch((err) => {
|
|
670
|
+
transformers = null;
|
|
671
|
+
throw err;
|
|
672
|
+
});
|
|
673
|
+
return transformers;
|
|
674
|
+
}
|
|
668
675
|
async function createEmbedder(opts = {}) {
|
|
676
|
+
const { env, pipeline } = await loadTransformers();
|
|
669
677
|
if (opts.cacheDir) {
|
|
670
678
|
env.cacheDir = opts.cacheDir;
|
|
671
679
|
}
|
|
@@ -1873,7 +1881,7 @@ function startUnlockServer(api, vault, opts = {}) {
|
|
|
1873
1881
|
}
|
|
1874
1882
|
|
|
1875
1883
|
// src/version.ts
|
|
1876
|
-
var VERSION = true ? "3.14.
|
|
1884
|
+
var VERSION = true ? "3.14.3" : "dev";
|
|
1877
1885
|
|
|
1878
1886
|
// src/server.ts
|
|
1879
1887
|
function defaultEmbeddingCacheDir() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "virlow-mcp",
|
|
3
|
-
"version": "3.14.
|
|
3
|
+
"version": "3.14.3",
|
|
4
4
|
"description": "Local MCP server for Virlow Secure Notes: end-to-end-encrypted AI memories and notes for Cursor, Claude, Codex, and any MCP client.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"esbuild": "^0.25.0",
|
|
35
35
|
"typescript": "^5.8.0",
|
|
36
36
|
"vitest": "^3.0.0",
|
|
37
|
-
"@batalabs/virlow-
|
|
38
|
-
"@batalabs/virlow-
|
|
39
|
-
"@batalabs/virlow-
|
|
37
|
+
"@batalabs/virlow-crypto": "3.14.3",
|
|
38
|
+
"@batalabs/virlow-memory": "3.14.3",
|
|
39
|
+
"@batalabs/virlow-mcp-core": "3.14.3"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "node build.mjs",
|