logosdb 0.7.1 → 0.7.6

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 (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -45,6 +45,8 @@ for (const hit of hits) {
45
45
  db.close();
46
46
  ```
47
47
 
48
+ The Node binding only stores vectors; it does **not** embed text. For **local embeddings** in your own app, use `@xenova/transformers`, call OpenAI/Voyage, etc., and pass `float` arrays whose length matches `dim`. The **`logosdb-mcp-server`** package bundles Transformers.js as the default embedding backend — see [`mcp/README.md`](../mcp/README.md).
49
+
48
50
  ## API
49
51
 
50
52
  ### `new DB(path, options)`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "logosdb",
3
- "version": "0.7.1",
3
+ "version": "0.7.6",
4
4
  "description": "Fast semantic vector database (HNSW + mmap) - Node.js bindings",
5
5
  "main": "lib/index.js",
6
6
  "types": "types/index.d.ts",