* fix(qdrant_mixin.py): rename query method to search_docs for clarity and consistency

This commit is contained in:
NirantK
2023-07-12 18:23:26 +05:30
parent a789766574
commit a05723ec40

View File

@@ -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],