Skip to content

Commit 50dc875

Browse files
authored
Mark rescore_vector as ga (#4194)
1 parent f438f9a commit 50dc875

File tree

4 files changed

+27
-45
lines changed

4 files changed

+27
-45
lines changed

output/schema/schema-serverless.json

+9-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

+9-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_types/Knn.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ export interface KnnSearch {
5454
* @doc_id knn-inner-hits
5555
*/
5656
inner_hits?: InnerHits
57-
/** Apply oversampling and rescoring to quantized vectors *
58-
* @availability stack since=8.18.0 stability=experimental
59-
* @availability serverless stability=experimental
57+
/** Apply oversampling and rescoring to quantized vectors
58+
* @availability stack since=8.18.0
59+
* @availability serverless
6060
*/
6161
rescore_vector?: RescoreVector
6262
}
@@ -79,9 +79,9 @@ export interface KnnQuery extends QueryBase {
7979
filter?: QueryContainer | QueryContainer[]
8080
/** The minimum similarity for a vector to be considered a match */
8181
similarity?: float
82-
/** Apply oversampling and rescoring to quantized vectors *
83-
* @availability stack since=8.18.0 stability=experimental
84-
* @availability serverless stability=experimental
82+
/** Apply oversampling and rescoring to quantized vectors
83+
* @availability stack since=8.18.0
84+
* @availability serverless
8585
*/
8686
rescore_vector?: RescoreVector
8787
}

specification/_types/Retriever.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ export class KnnRetriever extends RetrieverBase {
7474
num_candidates: integer
7575
/** The minimum similarity required for a document to be considered a match. */
7676
similarity?: float
77-
/** Apply oversampling and rescoring to quantized vectors *
78-
* @availability stack since=8.18.0 stability=experimental
79-
* @availability serverless stability=experimental
77+
/** Apply oversampling and rescoring to quantized vectors
78+
* @availability stack since=8.18.0
79+
* @availability serverless
8080
*/
8181
rescore_vector?: RescoreVector
8282
}

0 commit comments

Comments
 (0)