@vectororm/adapter-chroma 0.1.0 → 0.1.2
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/package.json +11 -9
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@vectororm/adapter-chroma)
|
|
4
4
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
5
5
|
|
|
6
|
-
[ChromaDB](https://www.trychroma.com/) adapter for [
|
|
6
|
+
[ChromaDB](https://www.trychroma.com/) adapter for [VectorORM](https://github.com/aviramroi/VectorORM).
|
|
7
7
|
|
|
8
8
|
## Installation
|
|
9
9
|
|
|
@@ -89,7 +89,7 @@ Environment variable fallbacks: `CHROMA_HOST`, `CHROMA_PORT`, `CHROMA_API_KEY`,
|
|
|
89
89
|
## Features
|
|
90
90
|
|
|
91
91
|
- Full CRUD operations (upsert, fetch, delete)
|
|
92
|
-
- Metadata filtering with
|
|
92
|
+
- Metadata filtering with VectorORM universal filter translation
|
|
93
93
|
- Collection management (create, delete, exists, stats)
|
|
94
94
|
- Batch iteration for enrichment pipelines
|
|
95
95
|
- Metadata updates without re-uploading vectors
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vectororm/adapter-chroma",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "ChromaDB adapter for
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "ChromaDB adapter for VectorORM",
|
|
5
5
|
"author": "Aviram Roisman",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"homepage": "https://github.com/aviramroi/VectorORM",
|
|
@@ -14,17 +14,20 @@
|
|
|
14
14
|
"access": "public"
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
|
-
"main": "./dist/index.
|
|
18
|
-
"module": "./dist/index.
|
|
17
|
+
"main": "./dist/index.cjs",
|
|
18
|
+
"module": "./dist/index.js",
|
|
19
19
|
"types": "./dist/index.d.ts",
|
|
20
20
|
"exports": {
|
|
21
21
|
".": {
|
|
22
22
|
"types": "./dist/index.d.ts",
|
|
23
|
-
"require": "./dist/index.
|
|
24
|
-
"import": "./dist/index.
|
|
23
|
+
"require": "./dist/index.cjs",
|
|
24
|
+
"import": "./dist/index.js"
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
|
-
"files": [
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md"
|
|
30
|
+
],
|
|
28
31
|
"engines": {
|
|
29
32
|
"node": ">=18.0.0"
|
|
30
33
|
},
|
|
@@ -45,10 +48,9 @@
|
|
|
45
48
|
"vitest": "^1.0.0"
|
|
46
49
|
},
|
|
47
50
|
"peerDependencies": {
|
|
48
|
-
"@vectororm/core": "^0.1.
|
|
51
|
+
"@vectororm/core": "^0.1.2"
|
|
49
52
|
},
|
|
50
53
|
"keywords": [
|
|
51
|
-
"glyph",
|
|
52
54
|
"vectororm",
|
|
53
55
|
"chroma",
|
|
54
56
|
"chromadb",
|