chunker_chunk_sliding_window
Splits text into overlapping segments using a sliding window. Specify window size and step to control chunk boundaries. Returns each chunk with index, text, and character positions.
Instructions
[chunker] Sliding window over text. Returns [{index, text, start, end}].
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| window_chars | No | ||
| step_chars | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |