mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-26 14:38:30 +02:00
fix: fix with_vectors arg in python example
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user