Class: SentenceSplitter
SentenceSplitter is our default text splitter that supports splitting into sentences, paragraphs, or fixed length chunks with overlap.
One of the advantages of SentenceSplitter is that even in the fixed length chunks it will try to keep sentences together.
Constructors
constructor
• new SentenceSplitter(options?
)
Parameters
Name | Type |
---|---|
options? | Object |
options.chunkOverlap? | number |
options.chunkSize? | number |
options.chunkingTokenizerFn? | (text : string ) => null | RegExpMatchArray |
options.paragraphSeparator? | string |
options.splitLongSentences? | boolean |
options.tokenizer? | any |
options.tokenizerDecoder? | any |
Defined in
Properties
chunkOverlap
• Private
chunkOverlap: number
Defined in
chunkSize
• Private
chunkSize: number
Defined in
chunkingTokenizerFn
• Private
chunkingTokenizerFn: (text
: string
) => null
| RegExpMatchArray
Type declaration
▸ (text
): null
| RegExpMatchArray
Parameters
Name | Type |
---|---|
text | string |
Returns
null
| RegExpMatchArray
Defined in
paragraphSeparator
• Private
paragraphSeparator: string
Defined in
splitLongSentences
• Private
splitLongSentences: boolean
Defined in
tokenizer
• Private
tokenizer: any
Defined in
tokenizerDecoder
• Private
tokenizerDecoder: any
Defined in
Methods
combineTextSplits
▸ combineTextSplits(newSentenceSplits
, effectiveChunkSize
): TextSplit
[]
Parameters
Name | Type |
---|---|
newSentenceSplits | SplitRep [] |
effectiveChunkSize | number |
Returns
TextSplit
[]
Defined in
getEffectiveChunkSize
▸ Private
getEffectiveChunkSize(extraInfoStr?
): number
Parameters
Name | Type |
---|---|
extraInfoStr? | string |
Returns
number
Defined in
getParagraphSplits
▸ getParagraphSplits(text
, effectiveChunkSize?
): string
[]
Parameters
Name | Type |
---|---|
text | string |
effectiveChunkSize? | number |
Returns
string
[]
Defined in
getSentenceSplits
▸ getSentenceSplits(text
, effectiveChunkSize?
): string
[]
Parameters
Name | Type |
---|---|
text | string |
effectiveChunkSize? | number |
Returns
string
[]
Defined in
processSentenceSplits
▸ Private
processSentenceSplits(sentenceSplits
, effectiveChunkSize
): SplitRep
[]
Splits sentences into chunks if necessary.
This isn't great behavior because it can split down the middle of a word or in non-English split down the middle of a Unicode codepoint so the splitting is turned off by default. If you need it, please set the splitLongSentences option to true.
Parameters
Name | Type |
---|---|
sentenceSplits | string [] |
effectiveChunkSize | number |
Returns
SplitRep
[]
Defined in
splitText
▸ splitText(text
, extraInfoStr?
): string
[]
Parameters
Name | Type |
---|---|
text | string |
extraInfoStr? | string |
Returns
string
[]
Defined in
splitTextWithOverlaps
▸ splitTextWithOverlaps(text
, extraInfoStr?
): TextSplit
[]
Parameters
Name | Type |
---|---|
text | string |
extraInfoStr? | string |
Returns
TextSplit
[]