@haybarn/ext-vindex-h1-5-4 202604.28.192754

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 +46 -0
  2. package/package.json +41 -0
package/README.md ADDED
@@ -0,0 +1,46 @@
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/Query-farm-haybarn/.github/haybarn/profile/assets/haybarn-icon.png" alt="Haybarn" width="120" height="120">
3
+ </p>
4
+
5
+ # Haybarn extension: `vindex`
6
+
7
+ Approximate nearest-neighbor vector indexes (HNSW / IVF / DiskANN / SPANN) with pluggable quantizers (Flat / RaBitQ / PQ / ScaNN)
8
+
9
+ > **Source:** [https://github.com/Icemap/duckdb-vector-index](https://github.com/Icemap/duckdb-vector-index)
10
+ > **Catalog:** [Haybarn community extensions](https://github.com/Query-farm-haybarn/haybarn-community-extensions)
11
+
12
+ ## Install
13
+
14
+ ```sh
15
+ npm install @haybarn/ext-vindex-h1-5-4
16
+ # or use the exact version:
17
+ npm install @haybarn/ext-vindex-h1-5-4@202604.28.192754
18
+ ```
19
+
20
+ npm picks the matching platform binary from the leaves below via its `os` / `cpu` / `libc` fields. No postinstall scripts, no network calls after `npm install`.
21
+
22
+ ## Available platforms (this version)
23
+
24
+ Installed automatically by `npm install @haybarn/ext-vindex-h1-5-4` (npm picks the one matching your `os`/`cpu`/`libc`):
25
+
26
+ - `@haybarn/ext-vindex-h1-5-4-win32-x64`
27
+ - `@haybarn/ext-vindex-h1-5-4-linux-x64`
28
+ - `@haybarn/ext-vindex-h1-5-4-darwin-arm64`
29
+ - `@haybarn/ext-vindex-h1-5-4-darwin-x64`
30
+ - `@haybarn/ext-vindex-h1-5-4-linux-arm64`
31
+
32
+ ## Use it
33
+
34
+ Once installed, the `.duckdb_extension` binary lands in your project's `node_modules/` tree under the matching leaf. The [Haybarn](https://github.com/Query-farm-haybarn/haybarn) engine auto-discovers it at startup; from a Haybarn SQL session:
35
+
36
+ ```sql
37
+ LOAD vindex;
38
+ ```
39
+
40
+ ## License
41
+
42
+ The `vindex` extension is distributed under **MIT**. The Haybarn engine itself is MIT-licensed.
43
+
44
+ ## Trademark
45
+
46
+ Haybarn is an independent derived distribution of DuckDB published by [Query Farm LLC](https://query.farm). Not affiliated with or endorsed by the DuckDB Foundation. DuckDB is a trademark of the DuckDB Foundation.
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@haybarn/ext-vindex-h1-5-4",
3
+ "version": "202604.28.192754",
4
+ "description": "Approximate nearest-neighbor vector indexes (HNSW / IVF / DiskANN / SPANN) with pluggable quantizers (Flat / RaBitQ / PQ / ScaNN)",
5
+ "homepage": "https://github.com/Icemap/duckdb-vector-index",
6
+ "bugs": {
7
+ "url": "https://github.com/Icemap/duckdb-vector-index/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/Query-farm-haybarn/haybarn-community-extensions.git"
12
+ },
13
+ "license": "MIT",
14
+ "keywords": [
15
+ "haybarn",
16
+ "duckdb",
17
+ "extension",
18
+ "vindex"
19
+ ],
20
+ "optionalDependencies": {
21
+ "@haybarn/ext-vindex-h1-5-4-win32-x64": "202604.28.192754",
22
+ "@haybarn/ext-vindex-h1-5-4-linux-x64": "202604.28.192754",
23
+ "@haybarn/ext-vindex-h1-5-4-darwin-arm64": "202604.28.192754",
24
+ "@haybarn/ext-vindex-h1-5-4-darwin-x64": "202604.28.192754",
25
+ "@haybarn/ext-vindex-h1-5-4-linux-arm64": "202604.28.192754"
26
+ },
27
+ "haybarn": {
28
+ "built_at": "2026-06-24T20:22:12Z",
29
+ "ext_commit": "4a85808da85378bb289f2a2a1e46f342fb96499e",
30
+ "ext_version_label": "",
31
+ "extension": "vindex",
32
+ "haybarn_version": "1.5.4",
33
+ "sha256": "see-leaf-packages-for-per-platform-sha256"
34
+ },
35
+ "files": [
36
+ "README.md"
37
+ ],
38
+ "publishConfig": {
39
+ "access": "public"
40
+ }
41
+ }