mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-26 06:28:30 +02:00
Merge pull request #202 from qdrant/fix-with-vectors
fix: fix with_vectors arg in python examples
This commit is contained in:
@@ -689,7 +689,7 @@ client.scroll(
|
||||
),
|
||||
limit=1,
|
||||
with_payload=True,
|
||||
with_vector=False,
|
||||
with_vectors=False,
|
||||
)
|
||||
```
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user