@omendb/omendb 0.0.32 → 0.0.34
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/index.d.ts +3 -4
- 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,
|
|
542
|
-
* - { repetitions?, partitionBits?, seed?, dProj
|
|
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
|
|
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.
|
|
3
|
+
"version": "0.0.34",
|
|
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.
|
|
54
|
-
"@omendb/omendb-darwin-arm64": "0.0.
|
|
55
|
-
"@omendb/omendb-linux-x64-gnu": "0.0.
|
|
56
|
-
"@omendb/omendb-linux-arm64-gnu": "0.0.
|
|
57
|
-
"@omendb/omendb-win32-x64-msvc": "0.0.
|
|
53
|
+
"@omendb/omendb-darwin-x64": "0.0.34",
|
|
54
|
+
"@omendb/omendb-darwin-arm64": "0.0.34",
|
|
55
|
+
"@omendb/omendb-linux-x64-gnu": "0.0.34",
|
|
56
|
+
"@omendb/omendb-linux-arm64-gnu": "0.0.34",
|
|
57
|
+
"@omendb/omendb-win32-x64-msvc": "0.0.34"
|
|
58
58
|
}
|
|
59
59
|
}
|