Paragraph splitter
Splits transcription text into paragraphs to improve readability. Controlled by use_paragraph_splitter and paragraph_splitter.max.
- max: 50
Example text split to about 50 characters per paragraph.
Another line follows here as a new paragraph. - max: 80
Example text split to about 80 characters per paragraph. With a longer line that remains readable across devices.
Another line follows. - use_paragraph_splitter: false
A single long paragraph is returned without splitting.
caution
This length is not always guaranteed if a single sentence exceeds the limit.
When diarization is enabled, splitting is applied per speaker; otherwise, it applies to the whole file.
Recommendations
| Mode | Max | Description |
|---|---|---|
| Short | 50 | Good for mobile environments |
| Normal | 80 | Good for tablets |
| Long | 130 | Good for desktop |
Usage
In the POST Request body, set use_paragraph_splitter: true and paragraph_splitter.max.
POST example: Example
Unified example (presets): Example