@vivantel/virage-store-chromadb 0.2.16 → 0.2.17
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 +6 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -49,12 +49,12 @@ Pass your Chroma Cloud URL and API key:
|
|
|
49
49
|
|
|
50
50
|
## Configuration
|
|
51
51
|
|
|
52
|
-
| Option
|
|
53
|
-
|
|
54
|
-
| `path`
|
|
55
|
-
| `apiKey`
|
|
56
|
-
| `collectionName` | `string` | `"documents"`
|
|
57
|
-
| `dimensions`
|
|
52
|
+
| Option | Type | Default | Description |
|
|
53
|
+
| ---------------- | -------- | ------------------------- | --------------------------------------------------- |
|
|
54
|
+
| `path` | `string` | `"http://localhost:8000"` | Chroma server URL |
|
|
55
|
+
| `apiKey` | `string` | `undefined` | API key for hosted Chroma (token auth) |
|
|
56
|
+
| `collectionName` | `string` | `"documents"` | Collection name |
|
|
57
|
+
| `dimensions` | `number` | `undefined` | Vector size (inferred from first upsert if omitted) |
|
|
58
58
|
|
|
59
59
|
## TypeScript usage
|
|
60
60
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vivantel/virage-store-chromadb",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.17",
|
|
4
4
|
"description": "ChromaDB vector store for @vivantel/rag-core (local or hosted)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@types/node": "^25.9.1",
|
|
64
|
-
"@vivantel/virage-core": "0.2.
|
|
64
|
+
"@vivantel/virage-core": "0.2.16",
|
|
65
65
|
"typescript": "^6.0.3",
|
|
66
66
|
"vitest": "^4.1.8"
|
|
67
67
|
},
|