Created
October 4, 2022 14:11
-
-
Save kacperlukawski/71a3f270cc42c0d3cf56c6b3ba2a0528 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from qdrant_client.http.models import NamedVector | |
text_results = client.search( | |
collection_name="ms-coco-2017", | |
query_vector=NamedVector( | |
name="text", | |
vector=row["text_vector"], | |
), | |
limit=5, | |
with_vectors=False, | |
with_payload=True, | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment