@omendb/omendb 0.0.32 → 0.0.33

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/index.d.ts +3 -4
  2. package/package.json +6 -6
package/index.d.ts CHANGED
@@ -538,13 +538,12 @@ export interface OpenOptions {
538
538
  metric?: string
539
539
  /**
540
540
  * Enable multi-vector mode for ColBERT-style retrieval
541
- * - true: Enable with default config (repetitions=8, partitionBits=4, dProj=16)
542
- * - { repetitions?, partitionBits?, seed?, dProj?, poolFactor? }: Custom config
541
+ * - true: Enable with default config (repetitions=8, partition_bits=4, dProj=16)
542
+ * - { repetitions?, partitionBits?, seed?, dProj? }: Custom config
543
543
  * - dProj: Dimension projection (16 = 8x smaller FDE, null = full token dim)
544
- * - poolFactor: Optional token pooling ratio (2 halves stored tokens)
545
544
  * - false/null: Disabled (default, single-vector mode)
546
545
  */
547
- multiVector?: boolean | { repetitions?: number; partitionBits?: number; seed?: number; dProj?: number | null; poolFactor?: number | null } | null | undefined
546
+ multiVector?: boolean | { repetitions?: number; partitionBits?: number; seed?: number; dProj?: number | null } | null | undefined
548
547
  /** SQ8 refiner: rescore with full precision (default: true when quantized) */
549
548
  rescore?: boolean
550
549
  /** Candidate multiplier for rescoring (default: 3.0) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omendb/omendb",
3
- "version": "0.0.32",
3
+ "version": "0.0.33",
4
4
  "description": "Fast embedded vector database with HNSW + ACORN-1 filtered search",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -50,10 +50,10 @@
50
50
  "omendb.node"
51
51
  ],
52
52
  "optionalDependencies": {
53
- "@omendb/omendb-darwin-x64": "0.0.32",
54
- "@omendb/omendb-darwin-arm64": "0.0.32",
55
- "@omendb/omendb-linux-x64-gnu": "0.0.32",
56
- "@omendb/omendb-linux-arm64-gnu": "0.0.32",
57
- "@omendb/omendb-win32-x64-msvc": "0.0.32"
53
+ "@omendb/omendb-darwin-x64": "0.0.33",
54
+ "@omendb/omendb-darwin-arm64": "0.0.33",
55
+ "@omendb/omendb-linux-x64-gnu": "0.0.33",
56
+ "@omendb/omendb-linux-arm64-gnu": "0.0.33",
57
+ "@omendb/omendb-win32-x64-msvc": "0.0.33"
58
58
  }
59
59
  }