From 20a7f527cacbda4cda211d03de2e9e722d3a161c Mon Sep 17 00:00:00 2001 From: "David S. Batista" Date: Wed, 4 Dec 2024 18:35:27 +0100 Subject: [PATCH] updating release notes --- ...g-recursive-splitter-1fa716fdd77d4d8c.yaml | 30 +------------------ 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/releasenotes/notes/adding-recursive-splitter-1fa716fdd77d4d8c.yaml b/releasenotes/notes/adding-recursive-splitter-1fa716fdd77d4d8c.yaml index ffeefe1890..aea4cd6d69 100644 --- a/releasenotes/notes/adding-recursive-splitter-1fa716fdd77d4d8c.yaml +++ b/releasenotes/notes/adding-recursive-splitter-1fa716fdd77d4d8c.yaml @@ -1,32 +1,4 @@ --- -highlights: > - Replace this text with content to appear at the top of the section for this - release. The highlights might repeat some details that are also present in other notes - from the same release, that's ok. Not every release note requires highlights, - use this section only to describe major features or notable changes. -upgrade: - - | - List upgrade notes here, or remove this section. - Upgrade notes should be rare: only list known/potential breaking changes, - or major changes that require user action before the upgrade. - Notes here must include steps that users can follow to 1. know if they're - affected and 2. handle the change gracefully on their end. features: - | - List new features here, or remove this section. -enhancements: - - | - List new behavior that is too small to be - considered a new feature, or remove this section. -issues: - - | - List known issues here, or remove this section. For example, if some change is experimental or known to not work in some cases, it should be mentioned here. -deprecations: - - | - List deprecations notes here, or remove this section. Deprecations should not be used for something that is removed in the release, use upgrade section instead. Deprecation should allow time for users to make necessary changes for the removal to happen in a future release. -security: - - | - Add security notes here, or remove this section. -fixes: - - | - Add normal bug fixes here, or remove this section. + Adding a `RecursiveChunker,` which uses a set of separators to split text recursively. It attempts to divide the text using the first separator, if the resulting chunks are still larger than the specified size, it moves to the next separator in the list.