@vectorstores/astra 0.1.0 → 0.1.1

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/dist/index.cjs CHANGED
@@ -18,7 +18,7 @@ class AstraDBVectorStore extends core.BaseVectorStore {
18
18
  const namespace = init?.params?.namespace ?? env.getEnv("ASTRA_DB_NAMESPACE") ?? "default_keyspace";
19
19
  this.astraClient = new astraDbTs.DataAPIClient(token, {
20
20
  caller: [
21
- "LlamaIndexTS"
21
+ "vectorstores"
22
22
  ]
23
23
  });
24
24
  this.astraDB = this.astraClient.db(endpoint, {
@@ -16,7 +16,7 @@ class AstraDBVectorStore extends BaseVectorStore {
16
16
  const namespace = init?.params?.namespace ?? getEnv("ASTRA_DB_NAMESPACE") ?? "default_keyspace";
17
17
  this.astraClient = new DataAPIClient(token, {
18
18
  caller: [
19
- "LlamaIndexTS"
19
+ "vectorstores"
20
20
  ]
21
21
  });
22
22
  this.astraDB = this.astraClient.db(endpoint, {
package/dist/index.js CHANGED
@@ -16,7 +16,7 @@ class AstraDBVectorStore extends BaseVectorStore {
16
16
  const namespace = init?.params?.namespace ?? getEnv("ASTRA_DB_NAMESPACE") ?? "default_keyspace";
17
17
  this.astraClient = new DataAPIClient(token, {
18
18
  caller: [
19
- "LlamaIndexTS"
19
+ "vectorstores"
20
20
  ]
21
21
  });
22
22
  this.astraDB = this.astraClient.db(endpoint, {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vectorstores/astra",
3
3
  "description": "Astra Storage for vectorstores",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
7
7
  "module": "./dist/index.js",
@@ -34,11 +34,11 @@
34
34
  "directory": "packages/providers/storage/astra"
35
35
  },
36
36
  "devDependencies": {
37
- "@vectorstores/core": "0.1.0",
37
+ "@vectorstores/core": "0.1.1",
38
38
  "@vectorstores/env": "0.1.0"
39
39
  },
40
40
  "peerDependencies": {
41
- "@vectorstores/core": "0.1.0",
41
+ "@vectorstores/core": "0.1.1",
42
42
  "@vectorstores/env": "0.1.0"
43
43
  },
44
44
  "dependencies": {