From a0d9358a4922e9084be71fa884658715cd84eec9 Mon Sep 17 00:00:00 2001 From: George Panchuk Date: Tue, 19 May 2026 17:08:56 +0700 Subject: [PATCH] fix: remove search method mention --- qdrant_client/async_qdrant_fastembed.py | 2 +- qdrant_client/qdrant_fastembed.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qdrant_client/async_qdrant_fastembed.py b/qdrant_client/async_qdrant_fastembed.py index 7faf9108..18ddde13 100644 --- a/qdrant_client/async_qdrant_fastembed.py +++ b/qdrant_client/async_qdrant_fastembed.py @@ -587,7 +587,7 @@ class AsyncQdrantFastembedMixin(AsyncQdrantBase): """ Search for documents in a collection. This method automatically embeds the query text using the specified embedding model. - If you want to use your own query vector, use `search` method instead. + If you want to use your own query vector, use `query_points` method instead. Args: collection_name: Collection to search in diff --git a/qdrant_client/qdrant_fastembed.py b/qdrant_client/qdrant_fastembed.py index 8e83293c..06f08056 100644 --- a/qdrant_client/qdrant_fastembed.py +++ b/qdrant_client/qdrant_fastembed.py @@ -627,7 +627,7 @@ class QdrantFastembedMixin(QdrantBase): """ Search for documents in a collection. This method automatically embeds the query text using the specified embedding model. - If you want to use your own query vector, use `search` method instead. + If you want to use your own query vector, use `query_points` method instead. Args: collection_name: Collection to search in