mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-27 06:58:30 +02:00
Update qdrant-landing/content/documentation/embeddings/mixpeek.mdx
Co-authored-by: Anush <anushshetty90@gmail.com>
This commit is contained in:
co-authored by
Anush
parent
810288aef9
commit
65a90a8971
@@ -128,11 +128,11 @@ query_embedding = mixpeek.embed.video(
|
||||
)['embedding']
|
||||
|
||||
# Search in Qdrant
|
||||
search_results = client.search(
|
||||
search_results = client.query_points(
|
||||
collection_name="video_chunks",
|
||||
query_vector=query_embedding,
|
||||
query=query_embedding,
|
||||
limit=5
|
||||
)
|
||||
).points
|
||||
|
||||
for result in search_results:
|
||||
print(f"Chunk ID: {result.id}, Score: {result.score}")
|
||||
|
||||
Reference in New Issue
Block a user