From b42595a8b17e530c080d62877e176ca2f232a674 Mon Sep 17 00:00:00 2001 From: Serguei Dmitriev <65043014+sergueidmitriev@users.noreply.github.com> Date: Fri, 14 Feb 2025 12:08:56 -0500 Subject: [PATCH] Add if paramter to text-embedding processor doc if parameter is missing from the list of available parameters Signed-off-by: Serguei Dmitriev <65043014+sergueidmitriev@users.noreply.github.com> --- _ingest-pipelines/processors/text-embedding.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_ingest-pipelines/processors/text-embedding.md b/_ingest-pipelines/processors/text-embedding.md index 6d263a0fec..b4b667567f 100644 --- a/_ingest-pipelines/processors/text-embedding.md +++ b/_ingest-pipelines/processors/text-embedding.md @@ -42,6 +42,7 @@ The following table lists the required and optional parameters for the `text_emb `description` | String | Optional | A brief description of the processor. | `tag` | String | Optional | An identifier tag for the processor. Useful for debugging to distinguish between processors of the same type. | `batch_size` | Integer | Optional | Specifies the number of documents to be batched and processed each time. Default is `1`. | +`if` | Optional | A condition for running the processor.| ## Using the processor @@ -129,4 +130,4 @@ Once you have created an ingest pipeline, you need to create an index for ingest - To learn how to use the `neural` query for text search, see [Neural query]({{site.url}}{{site.baseurl}}/query-dsl/specialized/neural/). - To learn more about semantic search, see [Semantic search]({{site.url}}{{site.baseurl}}/search-plugins/semantic-search/). - To learn more about using models in OpenSearch, see [Choosing a model]({{site.url}}{{site.baseurl}}/ml-commons-plugin/integrating-ml-models/#choosing-a-model). -- For a comprehensive example, see [Neural search tutorial]({{site.url}}{{site.baseurl}}/search-plugins/neural-search-tutorial/). \ No newline at end of file +- For a comprehensive example, see [Neural search tutorial]({{site.url}}{{site.baseurl}}/search-plugins/neural-search-tutorial/).