@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.
Files changed (3) hide show
  1. package/README.md +9 -6
  2. package/index.d.ts +1 -1
  3. 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
- **10K vectors, 128D, M=16, ef=100. Measured 2026-01-20 (Apple M3 Max):**
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
- | Metric | Value |
380
- | ---------- | ------------ |
381
- | Search QPS | 11,542 |
382
- | Build | 30,826 vec/s |
383
- | Recall@10 | 89.7% |
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: 32)
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.31",
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.31",
54
- "@omendb/omendb-darwin-arm64": "0.0.31",
55
- "@omendb/omendb-linux-x64-gnu": "0.0.31",
56
- "@omendb/omendb-linux-arm64-gnu": "0.0.31",
57
- "@omendb/omendb-win32-x64-msvc": "0.0.31"
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
  }