@vectorstores/qdrant 0.1.6 → 0.1.8
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 +2 -2
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.edge-light.d.ts +3 -3
- package/dist/index.edge-light.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -14,8 +14,8 @@ var core = require('@vectorstores/core');
|
|
|
14
14
|
* @param apiKey Qdrant API key
|
|
15
15
|
* @param batchSize Number of vectors to upload in a single batch
|
|
16
16
|
* @param embedModel Embedding model
|
|
17
|
-
*/ constructor({ collectionName, client, url, apiKey, batchSize
|
|
18
|
-
super(
|
|
17
|
+
*/ constructor({ collectionName, client, url, apiKey, batchSize }){
|
|
18
|
+
super(), this.storesText = true, this.collectionInitialized = false;
|
|
19
19
|
if (!client && !url) {
|
|
20
20
|
if (!url) {
|
|
21
21
|
throw new Error("QdrantVectorStore requires url and collectionName");
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { QdrantClient, Schemas } from '@qdrant/js-client-rest';
|
|
2
|
-
import { BaseVectorStore,
|
|
2
|
+
import { BaseVectorStore, BaseNode, VectorStoreQuery, VectorStoreQueryResult } from '@vectorstores/core';
|
|
3
3
|
|
|
4
4
|
type QdrantSearchParams = Schemas["SearchParams"];
|
|
5
5
|
type PointStruct = {
|
|
@@ -13,7 +13,7 @@ type QdrantParams = {
|
|
|
13
13
|
url?: string;
|
|
14
14
|
apiKey?: string;
|
|
15
15
|
batchSize?: number;
|
|
16
|
-
}
|
|
16
|
+
};
|
|
17
17
|
/**
|
|
18
18
|
* Qdrant vector store.
|
|
19
19
|
*/
|
|
@@ -32,7 +32,7 @@ declare class QdrantVectorStore extends BaseVectorStore {
|
|
|
32
32
|
* @param batchSize Number of vectors to upload in a single batch
|
|
33
33
|
* @param embedModel Embedding model
|
|
34
34
|
*/
|
|
35
|
-
constructor({ collectionName, client, url, apiKey, batchSize,
|
|
35
|
+
constructor({ collectionName, client, url, apiKey, batchSize, }: QdrantParams);
|
|
36
36
|
/**
|
|
37
37
|
* Returns the Qdrant client.
|
|
38
38
|
* @returns Qdrant client
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { QdrantClient, Schemas } from '@qdrant/js-client-rest';
|
|
2
|
-
import { BaseVectorStore,
|
|
2
|
+
import { BaseVectorStore, BaseNode, VectorStoreQuery, VectorStoreQueryResult } from '@vectorstores/core';
|
|
3
3
|
|
|
4
4
|
type QdrantSearchParams = Schemas["SearchParams"];
|
|
5
5
|
type PointStruct = {
|
|
@@ -13,7 +13,7 @@ type QdrantParams = {
|
|
|
13
13
|
url?: string;
|
|
14
14
|
apiKey?: string;
|
|
15
15
|
batchSize?: number;
|
|
16
|
-
}
|
|
16
|
+
};
|
|
17
17
|
/**
|
|
18
18
|
* Qdrant vector store.
|
|
19
19
|
*/
|
|
@@ -32,7 +32,7 @@ declare class QdrantVectorStore extends BaseVectorStore {
|
|
|
32
32
|
* @param batchSize Number of vectors to upload in a single batch
|
|
33
33
|
* @param embedModel Embedding model
|
|
34
34
|
*/
|
|
35
|
-
constructor({ collectionName, client, url, apiKey, batchSize,
|
|
35
|
+
constructor({ collectionName, client, url, apiKey, batchSize, }: QdrantParams);
|
|
36
36
|
/**
|
|
37
37
|
* Returns the Qdrant client.
|
|
38
38
|
* @returns Qdrant client
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { QdrantClient, Schemas } from '@qdrant/js-client-rest';
|
|
2
|
-
import { BaseVectorStore,
|
|
2
|
+
import { BaseVectorStore, BaseNode, VectorStoreQuery, VectorStoreQueryResult } from '@vectorstores/core';
|
|
3
3
|
|
|
4
4
|
type QdrantSearchParams = Schemas["SearchParams"];
|
|
5
5
|
type PointStruct = {
|
|
@@ -13,7 +13,7 @@ type QdrantParams = {
|
|
|
13
13
|
url?: string;
|
|
14
14
|
apiKey?: string;
|
|
15
15
|
batchSize?: number;
|
|
16
|
-
}
|
|
16
|
+
};
|
|
17
17
|
/**
|
|
18
18
|
* Qdrant vector store.
|
|
19
19
|
*/
|
|
@@ -32,7 +32,7 @@ declare class QdrantVectorStore extends BaseVectorStore {
|
|
|
32
32
|
* @param batchSize Number of vectors to upload in a single batch
|
|
33
33
|
* @param embedModel Embedding model
|
|
34
34
|
*/
|
|
35
|
-
constructor({ collectionName, client, url, apiKey, batchSize,
|
|
35
|
+
constructor({ collectionName, client, url, apiKey, batchSize, }: QdrantParams);
|
|
36
36
|
/**
|
|
37
37
|
* Returns the Qdrant client.
|
|
38
38
|
* @returns Qdrant client
|
package/dist/index.edge-light.js
CHANGED
|
@@ -12,8 +12,8 @@ import { BaseVectorStore, nodeToMetadata, metadataDictToNode, FilterOperator, Fi
|
|
|
12
12
|
* @param apiKey Qdrant API key
|
|
13
13
|
* @param batchSize Number of vectors to upload in a single batch
|
|
14
14
|
* @param embedModel Embedding model
|
|
15
|
-
*/ constructor({ collectionName, client, url, apiKey, batchSize
|
|
16
|
-
super(
|
|
15
|
+
*/ constructor({ collectionName, client, url, apiKey, batchSize }){
|
|
16
|
+
super(), this.storesText = true, this.collectionInitialized = false;
|
|
17
17
|
if (!client && !url) {
|
|
18
18
|
if (!url) {
|
|
19
19
|
throw new Error("QdrantVectorStore requires url and collectionName");
|
package/dist/index.js
CHANGED
|
@@ -12,8 +12,8 @@ import { BaseVectorStore, nodeToMetadata, metadataDictToNode, FilterOperator, Fi
|
|
|
12
12
|
* @param apiKey Qdrant API key
|
|
13
13
|
* @param batchSize Number of vectors to upload in a single batch
|
|
14
14
|
* @param embedModel Embedding model
|
|
15
|
-
*/ constructor({ collectionName, client, url, apiKey, batchSize
|
|
16
|
-
super(
|
|
15
|
+
*/ constructor({ collectionName, client, url, apiKey, batchSize }){
|
|
16
|
+
super(), this.storesText = true, this.collectionInitialized = false;
|
|
17
17
|
if (!client && !url) {
|
|
18
18
|
if (!url) {
|
|
19
19
|
throw new Error("QdrantVectorStore requires url and collectionName");
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vectorstores/qdrant",
|
|
3
3
|
"description": "Qdrant Storage for vectorstores",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.8",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"vitest": "^2.1.9",
|
|
38
|
-
"@vectorstores/core": "0.1.
|
|
38
|
+
"@vectorstores/core": "0.1.8",
|
|
39
39
|
"@vectorstores/env": "0.1.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@vectorstores/core": "0.1.
|
|
42
|
+
"@vectorstores/core": "0.1.8",
|
|
43
43
|
"@vectorstores/env": "0.1.0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|