Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 38 additions & 11 deletions output/schema/schema-serverless.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 38 additions & 11 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions specification/_types/Knn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ export interface KnnSearch {
* @doc_id knn-inner-hits
*/
inner_hits?: InnerHits
/** Apply oversampling and rescoring to quantized vectors */
/** Apply oversampling and rescoring to quantized vectors *
* @availability stack since=8.18.0 stability=experimental
* @availability serverless stability=experimental
*/
rescore_vector?: RescoreVector
}

Expand All @@ -76,7 +79,10 @@ export interface KnnQuery extends QueryBase {
filter?: QueryContainer | QueryContainer[]
/** The minimum similarity for a vector to be considered a match */
similarity?: float
/** Apply oversampling and rescoring to quantized vectors */
/** Apply oversampling and rescoring to quantized vectors *
* @availability stack since=8.18.0 stability=experimental
* @availability serverless stability=experimental
*/
rescore_vector?: RescoreVector
}

Expand Down
5 changes: 4 additions & 1 deletion specification/_types/Retriever.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ export class KnnRetriever extends RetrieverBase {
num_candidates: integer
/** The minimum similarity required for a document to be considered a match. */
similarity?: float
/** Apply oversampling and rescoring to quantized vectors */
/** Apply oversampling and rescoring to quantized vectors *
* @availability stack since=8.18.0 stability=experimental
* @availability serverless stability=experimental
*/
rescore_vector?: RescoreVector
}

Expand Down
Loading