elasticsearch/docs/reference
Jim Ferenczi 358ada7b3f
Add none chunking strategy to disable automatic chunking for inference endpoints (#129150)
This introduces a `none` chunking strategy that disables automatic chunking when using an inference endpoint.
It enables users to provide pre-chunked input directly to a `semantic_text` field without any additional splitting.

The chunking strategy can be configured either on the inference endpoint or directly in the `semantic_text` field definition.

**Example:**

```json
PUT test-index
{
  "mappings": {
    "properties": {
      "my_semantic_field": {
        "type": "semantic_text",
        "chunking_settings": {
          "strategy": "none"    <1>
        }
      }
    }
  }
}
```

<1> Disables automatic chunking on `my_semantic_field`.

```json
PUT test-index/_doc/1
{
    "my_semantic_field": ["my first chunk", "my second chunk", ...]    <1>
    ...
}
```

<1> Pre-chunked input provided as an array of strings.
Each array element represents a single chunk that will be sent directly to the inference service without further processing.
2025-06-12 10:44:53 +01:00
..
aggregations Replace chars (#128439) 2025-05-26 11:01:12 +02:00
community-contributed remove reliance on redirects in docs-content (#125863) 2025-03-28 16:41:38 +01:00
elasticsearch Add none chunking strategy to disable automatic chunking for inference endpoints (#129150) 2025-06-12 10:44:53 +01:00
elasticsearch-plugins Replace chars (#128439) 2025-05-26 11:01:12 +02:00
enrich-processor Adding NormalizeForStreamProcessor (#125699) 2025-06-03 13:11:12 -04:00
query-languages Register match_phrase as a function not a snapshot function (#129255) 2025-06-11 13:01:24 -04:00
scripting-languages [docs] Add products to docset.yml (#128274) 2025-05-21 13:55:32 -05:00
search/search-your-data [DOCS] Clean up Asciidoc links in markdown files (#125046) 2025-03-19 08:03:55 -07:00
search-connectors Add Connectors release notes for 9.0.2 (#128555) 2025-06-03 15:24:06 +02:00
setup/install/docker [docs] Migrate docs from AsciiDoc to Markdown (#123507) 2025-02-27 17:56:14 +01:00
text-analysis [DOCS] Replace irregular whitespaces in docs (#128199) 2025-05-20 16:20:22 +02:00
watcher/images [docs] Migrate docs from AsciiDoc to Markdown (#123507) 2025-02-27 17:56:14 +01:00
index.md [docs] More updates for docs-assembler (#125509) 2025-03-24 14:20:14 -05:00
toc.yml [docs] More updates for docs-assembler (#125509) 2025-03-24 14:20:14 -05:00