-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12549bd
commit 20a7f52
Showing
1 changed file
with
1 addition
and
29 deletions.
There are no files selected for viewing
30 changes: 1 addition & 29 deletions
30
releasenotes/notes/adding-recursive-splitter-1fa716fdd77d4d8c.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |