Enum SplitMode
Specifies different splitting modes that can be used during text partitioning operations.
public enum SplitMode
Fields
None = -1No splitting is performed; the text is treated as a single partition.
Paragraph = 0Indicates a split based on detected paragraphs.
Line = 1Indicates a split based on detected lines.
Punctuation = 2Indicates a split based on detected punctuation marks.
EndOfText = 3Indicates a split at the end of the text content, effectively treating the entire content as a single partition.
HardLimit = 4Indicates a split based on a predetermined, hard limit (such as a specific number of tokens).