From 0ac33607948c31b5ca7eeaaf85681d67a9e054a1 Mon Sep 17 00:00:00 2001 From: Panagiotis Bailis Date: Tue, 29 Oct 2024 12:28:38 +0200 Subject: [PATCH] iter --- output/schema/schema-serverless.json | 7 +++++-- output/schema/schema.json | 7 +++++-- specification/_global/search/SearchRequest.ts | 4 ++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/output/schema/schema-serverless.json b/output/schema/schema-serverless.json index 1a39175a01..80d3d4b86c 100644 --- a/output/schema/schema-serverless.json +++ b/output/schema/schema-serverless.json @@ -36176,9 +36176,12 @@ }, { "availability": { - "serverless": {}, + "serverless": { + "stability": "stable" + }, "stack": { - "since": "8.14.0" + "since": "8.14.0", + "stability": "stable" } }, "description": "A retriever is a specification to describe top documents returned from a search. A retriever replaces other elements of the search API that also return top documents such as query and knn.", diff --git a/output/schema/schema.json b/output/schema/schema.json index 3c11cc7257..c08f9db232 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -32227,9 +32227,12 @@ }, { "availability": { - "serverless": {}, + "serverless": { + "stability": "stable" + }, "stack": { - "since": "8.14.0" + "since": "8.14.0", + "stability": "stable" } }, "description": "A retriever is a specification to describe top documents returned from a search. A retriever replaces other elements of the search API that also return top documents such as query and knn.", diff --git a/specification/_global/search/SearchRequest.ts b/specification/_global/search/SearchRequest.ts index 9fec2b244d..b2719a6b29 100644 --- a/specification/_global/search/SearchRequest.ts +++ b/specification/_global/search/SearchRequest.ts @@ -428,8 +428,8 @@ export interface Request extends RequestBase { rescore?: Rescore | Rescore[] /** * A retriever is a specification to describe top documents returned from a search. A retriever replaces other elements of the search API that also return top documents such as query and knn. - * @availability stack since=8.14.0 - * @availability serverless + * @availability stack since=8.14.0 stability=stable + * @availability serverless stability=stable */ retriever?: RetrieverContainer /**