@wrongstack/vector-memory 0.316.2 → 0.317.2

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.
@@ -4,7 +4,7 @@
4
4
  * Mirrors the pattern used by `packages/tools/src/codebase-index/vector-search.ts`
5
5
  * so that the on-disk byte layout is portable between the codebase-index
6
6
  * and vector-memory stores. node:sqlite returns `Uint8Array` for BLOB columns,
7
- * so we read through `DataView` regardless of the runtime type.
7
+ * so we copy the visible byte range regardless of the runtime type.
8
8
  */
9
9
  export declare function encodeVector(vec: Float32Array): Buffer;
10
10
  export declare function decodeVector(buf: Buffer | Uint8Array): Float32Array;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrongstack/vector-memory",
3
- "version": "0.316.2",
3
+ "version": "0.317.2",
4
4
  "license": "MIT",
5
5
  "description": "WrongStack Vector Memory — an additional vector-search memory store powered by @huggingface/transformers (local ONNX embeddings), alongside the SAGE lexical memory system.",
6
6
  "repository": {
@@ -27,9 +27,9 @@
27
27
  "README.md"
28
28
  ],
29
29
  "dependencies": {
30
- "@wrongstack/core": "0.316.2",
31
- "@wrongstack/persistence": "0.316.2",
32
- "@wrongstack/sage": "0.316.2"
30
+ "@wrongstack/core": "0.317.2",
31
+ "@wrongstack/persistence": "0.317.2",
32
+ "@wrongstack/sage": "0.317.2"
33
33
  },
34
34
  "optionalDependencies": {
35
35
  "@huggingface/transformers": "^4.2.0"