@omendb/omendb 0.0.31 → 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.
- package/README.md +9 -6
- package/index.d.ts +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -374,13 +374,16 @@ const merged = db.mergeFrom(otherDb);
|
|
|
374
374
|
|
|
375
375
|
## Performance
|
|
376
376
|
|
|
377
|
-
|
|
377
|
+
Node bindings call the same Rust core as the Rust and Python APIs, so authoritative ANN numbers are tracked at the repo root with the shared SIFT benchmark on Fedora/Linux medians.
|
|
378
378
|
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
379
|
+
Use the shared benchmark for comparable performance claims:
|
|
380
|
+
|
|
381
|
+
```bash
|
|
382
|
+
cd python && uv run python benchmark.py
|
|
383
|
+
cd python && uv run python benchmark.py --publish
|
|
384
|
+
```
|
|
385
|
+
|
|
386
|
+
Older Apple M3 Max wrapper numbers were local reference points only and are no longer treated as the authoritative baseline.
|
|
384
387
|
|
|
385
388
|
## License
|
|
386
389
|
|
package/index.d.ts
CHANGED
|
@@ -347,7 +347,7 @@ export declare class VectorDatabase {
|
|
|
347
347
|
* @param query - Query tokens (number[][] or Float32Array[])
|
|
348
348
|
* @param k - Number of results to return
|
|
349
349
|
* @param rerank - Enable MaxSim reranking for better quality (default: true)
|
|
350
|
-
* @param rerankFactor - Fetch k*rerankFactor candidates before reranking (default:
|
|
350
|
+
* @param rerankFactor - Fetch k*rerankFactor candidates before reranking (default: 20)
|
|
351
351
|
* @returns Array of {id, distance, metadata}
|
|
352
352
|
*/
|
|
353
353
|
searchMulti(query: Array<Array<number>> | Array<Float32Array>, k: number, rerank?: boolean | undefined | null, rerankFactor?: number | undefined | null): Array<SearchResult>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omendb/omendb",
|
|
3
|
-
"version": "0.0.
|
|
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.
|
|
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.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
|
}
|