fix: fix with_vectors arg in python example

This commit is contained in:
George Panchuk
2023-06-26 00:32:46 +04:00
parent 1316db4bac
commit 09745e9955
2 changed files with 2 additions and 2 deletions
@@ -689,7 +689,7 @@ client.scroll(
), ),
limit=1, limit=1,
with_payload=True, with_payload=True,
with_vector=False, with_vectors=False,
) )
``` ```
@@ -576,7 +576,7 @@ client = QdrantClient("localhost", port=6333)
client.search( client.search(
collection_name="{collection_name}", collection_name="{collection_name}",
query_vector=[0.2, 0.1, 0.9, 0.7], query_vector=[0.2, 0.1, 0.9, 0.7],
with_vector=True, with_vectors=True,
with_payload=True, with_payload=True,
limit=10, limit=10,
offset=100 offset=100