Skip to content

Chunkers

Overview

Chunkers are used to split arbitrarily long text into chunks of certain token length. Each chunker has a tokenizer, a max token count, and a list of default separators used to split up text into TextArtifacts. Different types of chunkers provide lists of separators for specific text shapes:

Here is how to use a chunker:

from griptape.chunkers import TextChunker
from griptape.tokenizers import OpenAiTokenizer
TextChunker(
     # set an optional custom tokenizer
     tokenizer=OpenAiTokenizer(model="gpt-4"),
     # optionally modify default number of tokens
     max_tokens=100
).chunk("long text")