Qdrant: Search
Run a vector search against a Qdrant collection. Supports plain dense search
and hybrid retrieval (dense + sparse with RRF fusion). The sparse vector is
computed on the fly from the request's query string using the configured
sparse method (BM25 or SPLADE).
Pre-requisite: Install Qdrant application in Profile > {Organization} > Applications to grant Zparse access.
Parameters
Qdrant application.Qdrant collection to search against. Must already exist.
Single Embedding— plain dense search. -Hybrid Search— dense + sparse prefetches fused with Reciprocal Rank Fusion (RRF). Pair withSparse Method.
Name of the dense vector when the collection uses named vectors. Defaults
to dense.
Hybrid Search only — name of the sparse vector when the collection uses
named vectors. Defaults to sparse.
Hybrid Search only — algorithm used to derive the sparse query vector
from the query text: - BM25 — classic lexical scoring. - SPLADE —
learned sparse representation.
Hybrid Search only — when enabled, skip the sparse prefetch and run a
named-dense search over Dense Vector Name. Useful when sparse retrieval
would not help but the collection still uses named vectors.
Input
Search request containing the dense query vector and (for hybrid) the original query text used to derive the sparse vector.
Output
Qdrant search response (matched points with scores and payloads).