From a05723ec40e84f4fd9cad5c665484bd5dcb3e1a7 Mon Sep 17 00:00:00 2001 From: NirantK Date: Wed, 12 Jul 2023 18:23:26 +0530 Subject: [PATCH] * fix(qdrant_mixin.py): rename query method to search_docs for clarity and consistency --- fastvector/qdrant_mixin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastvector/qdrant_mixin.py b/fastvector/qdrant_mixin.py index 7116988..98788b4 100644 --- a/fastvector/qdrant_mixin.py +++ b/fastvector/qdrant_mixin.py @@ -70,7 +70,7 @@ class QdrantClientMixin: # Call the existing upsert method with the new PointStruct self.upsert(collection_name=collection_name, points=points, wait=wait, **kwargs) - def query( + def search_docs( self, collection_name: str, query_texts: List[str],