Merge pull request #202 from qdrant/fix-with-vectors

fix: fix with_vectors arg in python examples
This commit is contained in:
David Sertic
2023-06-27 10:33:15 +02:00
committed by GitHub
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