Table of Contents

Enum SplitMode

Namespace
LMKit.Data
Assembly
LM-Kit.NET.dll

Specifies different splitting modes that can be used during text partitioning operations.

public enum SplitMode

Fields

None = -1

No splitting is performed; the text is treated as a single partition.

Paragraph = 0

Indicates a split based on detected paragraphs.

Line = 1

Indicates a split based on detected lines.

Punctuation = 2

Indicates a split based on detected punctuation marks.

EndOfText = 3

Indicates a split at the end of the text content, effectively treating the entire content as a single partition.

HardLimit = 4

Indicates a split based on a predetermined, hard limit (such as a specific number of tokens).