From 09745e9955d0265cdd257cc4d12080fafbf95937 Mon Sep 17 00:00:00 2001 From: George Panchuk Date: Mon, 26 Jun 2023 00:32:46 +0400 Subject: [PATCH] fix: fix with_vectors arg in python example --- qdrant-landing/content/documentation/concepts/points.md | 2 +- qdrant-landing/content/documentation/concepts/search.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qdrant-landing/content/documentation/concepts/points.md b/qdrant-landing/content/documentation/concepts/points.md index 675618ce8..b7374e604 100755 --- a/qdrant-landing/content/documentation/concepts/points.md +++ b/qdrant-landing/content/documentation/concepts/points.md @@ -689,7 +689,7 @@ client.scroll( ), limit=1, with_payload=True, - with_vector=False, + with_vectors=False, ) ``` diff --git a/qdrant-landing/content/documentation/concepts/search.md b/qdrant-landing/content/documentation/concepts/search.md index 9f977bcda..c5c74788e 100644 --- a/qdrant-landing/content/documentation/concepts/search.md +++ b/qdrant-landing/content/documentation/concepts/search.md @@ -576,7 +576,7 @@ client = QdrantClient("localhost", port=6333) client.search( collection_name="{collection_name}", query_vector=[0.2, 0.1, 0.9, 0.7], - with_vector=True, + with_vectors=True, with_payload=True, limit=10, offset=100