Document Chunker
Splits text into deterministic overlapping chunks.
Run tool
Form input
Direct JSON or Markdown
Submit JSON directly or Markdown that can be converted into JSON.
Work steps
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
text | text | Yes | Text |
chunk_size | integer | Yes | Chunk size |
overlap | integer | Yes | Overlap |
Outputs
| Name | Type | Description |
|---|---|---|
chunks | array | Chunks |
work | array | Work |
Sample request
{
"text": "one two three four five six",
"chunk_size": 12,
"overlap": 3
}