@wiscale/velesdb-sdk 1.9.2 → 1.10.0

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/README.md +14 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,15 +2,23 @@
2
2
 
3
3
  Official TypeScript SDK for [VelesDB](https://github.com/cyberlife-coder/VelesDB) -- the local-first vector database for AI and RAG. Sub-millisecond semantic search in Browser and Node.js.
4
4
 
5
- **v1.9.2** | Node.js >= 18 | Browser (WASM) | MIT License
5
+ **v1.10.0** | Node.js >= 18 | Browser (WASM) | MIT License
6
6
 
7
- ## What's New in v1.9.2
7
+ ## What's New in v1.10.0
8
8
 
9
- - **SearchQuality type** -- new `SearchQuality` type and `quality` field in `SearchOptions` for per-query recall/latency control (`fast`, `balanced`, `accurate`, `perfect`, `custom:N`, `adaptive:min:max`)
9
+ - **VelesQL LET clause** -- named score bindings for custom scoring formulas
10
+ - **Component scores** -- `vector_score`, `bm25_score`, `graph_score` resolve independently in ORDER BY
11
+ - **WITH options functional** -- `mode`, `timeout_ms`, `rerank` now wired to execution (were parsed but ignored)
12
+ - **Agent Memory VelesQL** -- query semantic/episodic/procedural memory via standard VelesQL
13
+ - **USING FUSION k parameter** -- configurable RRF constant for hybrid text search
14
+
15
+ ### Previous (v1.9.2)
16
+
17
+ - **SearchQuality type** -- `SearchQuality` type and `quality` field in `SearchOptions`
10
18
  - **StorageMode in HnswParams** -- `storageMode` field in HNSW configuration
11
- - **Relative score fusion** -- `'relative_score'` fusion strategy in `MultiQuerySearchOptions`
12
- - **DistanceMetric "ip" alias** -- `"ip"` accepted as an alias for `"dot"` (inner product)
13
- - **StorageMode aliases** -- `"f32"`, `"int8"`, `"bit"` accepted as aliases for `"full"`, `"sq8"`, `"binary"`
19
+ - **Relative score fusion** -- `'relative_score'` fusion strategy
20
+ - **DistanceMetric "ip" alias** -- `"ip"` accepted as alias for `"dot"`
21
+ - **StorageMode aliases** -- `"f32"`, `"int8"`, `"bit"` accepted
14
22
 
15
23
  ### Previous (v1.9.1)
16
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wiscale/velesdb-sdk",
3
- "version": "1.9.2",
3
+ "version": "1.10.0",
4
4
  "description": "VelesDB TypeScript SDK: The Local Vector Database for AI & RAG. Microsecond semantic search in Browser & Node.js.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",