From 283bab179179527c32fe1f90b53a0263307e519f Mon Sep 17 00:00:00 2001 From: kosabogi <105062005+kosabogi@users.noreply.github.com> Date: Tue, 18 Nov 2025 09:16:40 +0100 Subject: [PATCH] Adds tech preview tag to the 'Create an Elasticsearch inference' endpoint's parameters (#5684) * Adds tech preview callout * Adds tech preview tags * Removes sentence * Adds serverless tech preview tag (cherry picked from commit 4a876c00922a675323efe87b3ea94f8d9b5fd3e6) --- specification/inference/_types/CommonTypes.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/specification/inference/_types/CommonTypes.ts b/specification/inference/_types/CommonTypes.ts index 1d68689627..37914f4053 100644 --- a/specification/inference/_types/CommonTypes.ts +++ b/specification/inference/_types/CommonTypes.ts @@ -1339,12 +1339,16 @@ export class ElasticsearchServiceSettings { * * When `long_document_strategy` is set to `chunk`, Elasticsearch splits each document into smaller parts but still returns a single score per document. * That score reflects the highest relevance score among all chunks. + * @availability stack stability=experimental visibility=public + * @availability serverless stability=experimental visibility=public */ long_document_strategy?: string /** * Only for the `rerank` task type. * Limits the number of chunks per document that are sent for inference when chunking is enabled. * If not set, all chunks generated for the document are processed. + * @availability stack stability=experimental visibility=public + * @availability serverless stability=experimental visibility=public */ max_chunks_per_doc?: integer }