SearchMatrixRequest

@Serializable
data class SearchMatrixRequest(val filter: Filter? = null, val sample: Int? = null, val limit: Int? = null, val using: String? = null)

Request body for the distance-matrix analytics endpoints. Qdrant samples sample points and, for each, finds its limit nearest neighbours among the sample, optionally restricted by filter and computed on the using named vector.

Constructors

Link copied to clipboard
constructor(filter: Filter? = null, sample: Int? = null, limit: Int? = null, using: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "filter")
val filter: Filter?
Link copied to clipboard
@SerialName(value = "limit")
val limit: Int?
Link copied to clipboard
@SerialName(value = "sample")
val sample: Int?
Link copied to clipboard
@SerialName(value = "using")
val using: String?