Skip to main content

Split

Under Review

This article is currently under review. Some content may be incomplete or inaccurate.

Category: Processing

The Split activity groups the transaction's pages into separate documents. A single upload (or batch of uploads) often contains several documents, and Split decides where each one begins and ends.

Configuration

SettingDescriptionDefault
Enable SplittingWhen set to No, splitting is skipped and every file becomes one document (the One document per file mode).Yes
Split ModeHow pages are grouped into documents (see below).One document per file
Document ClassesCandidate document classes used by intelligent splitting.(optional)
Split FieldsFields that help the model decide boundaries.(optional)
GuidelinesExtra instructions for intelligent splitting.(optional)
Window SizeHow many consecutive pages the model looks at in one go when deciding where a document ends. A larger window gives more context around a possible boundary and costs more per window.2
Window StepHow far the window moves between checks. A step of 1 checks every boundary; a larger step is cheaper but can miss a split.1

Intelligent splitting always analyzes every page of the transaction. There is no setting to look at only the first few pages, because a page the model never sees could not be placed in any document.

Split modes

ModeBehavior
One document per fileEach file added to the transaction becomes one document, keeping its page order. Documents never span files.
One document per pageEvery page becomes its own single-page document.
All pages in one documentThe whole transaction is a single document, in the order the files were added.
Intelligent LLM splittingThe model detects document boundaries from content. All pages are analyzed as one stream, so a document may span several files.
Intelligent LLM splitting within filesThe model detects document boundaries inside each file. File borders are always document borders, so documents never span files.

Pages always have to be grouped into documents, so there is no "no split" outcome. Turning Enable Splitting off simply pins the mode to One document per file; the mode selector is shown locked to that value.

Per-file split policies

API clients and connectors can pin a split constraint on individual files at upload time, overriding the project mode for just those files. A file can be marked as exactly one document, or as self-contained (one or more whole documents, analyzed inside the file only). The email import connector uses this to keep the email body separate from its attachments. See Per-File Split Policies.