@bridgerust/embex 0.1.15 → 0.1.16
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 +2 -2
- package/bun.lockb +0 -0
- package/package.json +12 -6
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ async function main() {
|
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
// 2. Initialize Client (uses LanceDB embedded)
|
|
43
|
-
const client = await EmbexClient.newAsync("lancedb
|
|
43
|
+
const client = await EmbexClient.newAsync("lancedb", "./data");
|
|
44
44
|
|
|
45
45
|
// 3. Create Collection (384 dimensions for MiniLM)
|
|
46
46
|
await client.createCollection("products", 384);
|
|
@@ -93,7 +93,7 @@ Ready for production? Just change the initialization line.
|
|
|
93
93
|
**From LanceDB (Dev):**
|
|
94
94
|
|
|
95
95
|
```typescript
|
|
96
|
-
const client = await EmbexClient.newAsync("lancedb
|
|
96
|
+
const client = await EmbexClient.newAsync("lancedb", "./data");
|
|
97
97
|
```
|
|
98
98
|
|
|
99
99
|
**To Qdrant Cloud (Prod):**
|
package/bun.lockb
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bridgerust/embex",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"description": "Embex Vector Database ORM Node.js Bindings",
|
|
5
5
|
"homepage": "https://github.com/bridgerust/bridgerust/tree/main/crates/embex",
|
|
6
|
+
"authors": [
|
|
7
|
+
{
|
|
8
|
+
"name": "BridgeRust",
|
|
9
|
+
"email": "hello@kologojosias.com"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
6
12
|
"repository": {
|
|
7
13
|
"type": "git",
|
|
8
14
|
"url": "https://github.com/bridgerust/bridgerust/tree/main/crates/embex"
|
|
@@ -62,10 +68,10 @@
|
|
|
62
68
|
"@types/node": "^25.0.3"
|
|
63
69
|
},
|
|
64
70
|
"optionalDependencies": {
|
|
65
|
-
"@bridgerust/embex-darwin-arm64": "0.1.
|
|
66
|
-
"@bridgerust/embex-darwin-x64": "0.1.
|
|
67
|
-
"@bridgerust/embex-linux-x64-gnu": "0.1.
|
|
68
|
-
"@bridgerust/embex-linux-x64-musl": "0.1.
|
|
69
|
-
"@bridgerust/embex-win32-x64-msvc": "0.1.
|
|
71
|
+
"@bridgerust/embex-darwin-arm64": "0.1.16",
|
|
72
|
+
"@bridgerust/embex-darwin-x64": "0.1.16",
|
|
73
|
+
"@bridgerust/embex-linux-x64-gnu": "0.1.16",
|
|
74
|
+
"@bridgerust/embex-linux-x64-musl": "0.1.16",
|
|
75
|
+
"@bridgerust/embex-win32-x64-msvc": "0.1.16"
|
|
70
76
|
}
|
|
71
77
|
}
|