chonkie-inc/chonkie

πŸ¦› CHONK docs with Chonkie ✨ β€” The lightweight ingestion library for fast, efficient and robust RAG pipelines

4,740

stars

2,197

commits

Python

primary language

Sep 2, 2026

updated

docs.chonkie.ai
ai
chonkie
chunker
chunking-algorithm
llms
rag
retrieval-systems
semantic-chunker
similarity-search
splitting-algorithms
text-splitter

README

Chonkie Logo

πŸ¦› Chonkie ✨

PyPI version License Documentation Package size codecov Downloads Discord GitHub stars

The lightweight ingestion library for fast, efficient and robust RAG pipelines

Installation β€’ Usage β€’ Chunkers β€’ Integrations β€’ Benchmarks

Tired of making your gazillionth chunker? Sick of the overhead of large libraries? Want to chunk your texts quickly and efficiently? Chonkie the mighty hippo is here to help!

πŸš€ Feature-rich: All the CHONKs you'd ever need
πŸ”„ End-to-end: Fetch, CHONK, refine, embed and ship straight to your vector DB!
✨ Easy to use: Install, Import, CHONK
⚑ Fast: CHONK at the speed of light! zooooom
πŸͺΆ Light-weight: No bloat, just CHONK
πŸ”Œ 32+ integrations: Works with your favorite tools and vector DBs out of the box!
πŸ’¬ ️Multilingual: Out-of-the-box support for 56 languages
☁️ Cloud-Friendly: CHONK locally or in the Cloud
πŸ¦› Cute CHONK mascot: psst it's a pygmy hippo btw
❀️ Moto Moto's favorite python library

Chonkie is a chunking library that "just works" ✨

πŸ“¦ Installation

Basic Installation

Using pip:

pip install chonkie

Or using uv (faster):

uv pip install chonkie

Full Installation

Chonkie follows the rule of minimum installs. Have a favorite chunker? Read our docs to install only what you need. Don't want to think about it? Simply install all (Not recommended for production environments).

Using pip:

pip install "chonkie[all]"

Or using uv:

uv pip install "chonkie[all]"

πŸš€ Usage

Basic Usage

Here's a basic example to get you started:

# First import the chunker you want from Chonkie
from chonkie import RecursiveChunker

# Initialize the chunker
chunker = RecursiveChunker()

# Chunk some text
chunks = chunker("Chonkie is the goodest boi! My favorite chunking hippo hehe.")

# Access chunks
for chunk in chunks:
    print(f"Chunk: {chunk.text}")
    print(f"Tokens: {chunk.token_count}")

Pipeline Usage

You can also use the chonkie.Pipeline to chain components together and handle complex workflows. Read more about pipelines in the docs!

from chonkie import Pipeline

# Create a pipeline with multiple chunking and refinement steps
pipe = (
    Pipeline()
    .chunk_with("recursive", tokenizer="gpt2", chunk_size=2048, recipe="markdown")
    .chunk_with("semantic", chunk_size=512)
    .refine_with("overlap", context_size=128)
    .refine_with("embeddings", embedding_model="sentence-transformers/all-MiniLM-L6-v2")
)

# CHONK some Texts!
doc = pipe.run(texts="Chonkie is the goodest boi! My favorite chunking hippo hehe.")

# Access the processed chunks in the `doc` object
for chunk in doc.chunks:
    print(chunk.text)

# Run asynchronously for high-throughput applications
import asyncio

async def main():
    doc = await pipe.arun(texts="Chonkie runs fast!")
    print(len(doc.chunks))

asyncio.run(main())

Check out more usage examples in the docs!

🌐 API Server

Run Chonkie as a self-hosted REST API for easy integration into any application:

# Install with API dependencies (includes catsu for multi-provider embeddings)
pip install "chonkie[api,semantic,code,catsu]"

# Start the server using the CLI
chonkie serve

# Or with custom options
chonkie serve --port 3000 --reload --log-level debug

# Or directly with uvicorn
uvicorn chonkie.api.main:app --host 0.0.0.0 --port 8000

Or use Docker:

docker compose up

The API provides endpoints for all chunkers, refineries, and pipelines β€” reusable workflow configurations stored in a local SQLite database.

# Create a reusable pipeline
curl -X POST http://localhost:8000/v1/pipelines \
  -H "Content-Type: application/json" \
  -d '{
    "name": "rag-chunker",
    "steps": [
      {"type": "chunk", "chunker": "semantic", "config": {"chunk_size": 512}},
      {"type": "refine", "refinery": "embeddings", "config": {"embedding_model": "text-embedding-3-small"}}
    ]
  }'

# List your pipelines
curl http://localhost:8000/v1/pipelines

Interactive documentation is available at /docs when the server is running.

βœ‚οΈ Chunkers

Chonkie provides several chunkers to help you split your text efficiently for RAG applications. Here's a quick overview of the available chunkers:

NameAliasDescription
TokenChunkertokenSplits text into fixed-size token chunks.
FastChunkerfastSIMD-accelerated byte-based chunking at 100+ GB/s. Included in the default install.
SentenceChunkersentenceSplits text into chunks based on sentences.
RecursiveChunkerrecursiveSplits text hierarchically using customizable rules to create semantically meaningful chunks.
SemanticChunkersemanticSplits text into chunks based on semantic similarity. Inspired by the work of Greg Kamradt.
LateChunkerlateEmbeds text and then splits it to have better chunk embeddings.
CodeChunkercodeSplits code into structurally meaningful chunks.
NeuralChunkerneuralSplits text using a neural model.
SlumberChunkerslumberSplits text using an LLM to find semantically meaningful chunks. Also known as "AgenticChunker".
TableChunkertableChunks markdown tables by rows or character count.
TeraflopAIChunkerteraflopaiSplits text using the TeraflopAI Segmentation API for domain-specific segmentation.

More on these methods and the approaches taken inside the docs

πŸ”Œ Integrations

Chonkie boasts 45+ integrations across tokenizers, embedding providers, LLMs, refineries, porters, vector databases, and utilities, ensuring it fits seamlessly into your existing workflow.

πŸ‘¨β€πŸ³ Chefs & πŸ“ Fetchers! Text preprocessing and data loading!

Chefs handle text preprocessing, while Fetchers load data from various sources.

ComponentClassDescriptionOptional Install
chefTextChefText preprocessing and cleaning.default
chefMarkdownChefParse markdown into structured MarkdownDocuments.default
chefTableChefProcess CSV/Excel files into MarkdownDocuments.chonkie[table]
chefMistralOCRExtract text from images/PDFs via Mistral OCR API.chonkie[mistral]
fetcherFileFetcherLoad text from files and directories.default
🏭 Refine your CHONKs with Context and Embeddings! Chonkie supports 2+ refineries!

Refineries help you post-process and enhance your chunks after initial chunking.

Refinery NameClassDescriptionOptional Install
overlapOverlapRefineryMerge overlapping chunks based on similarity.default
embeddingsEmbeddingsRefineryAdd embeddings to chunks using any provider.chonkie[semantic]
🐴 Exporting CHONKs! Chonkie supports 2+ Porters!

Porters help you save your chunks easily.

Porter NameClassDescriptionOptional Install
jsonJSONPorterExport chunks to a JSON file.default
datasetsDatasetsPorterExport chunks to HuggingFace datasets.chonkie[datasets]
🀝 Shake hands with your DB! Chonkie connects with 10+ vector stores!

Handshakes provide a unified interface to ingest chunks directly into your favorite vector databases.

Handshake NameClassDescriptionOptional Install
chromaChromaHandshakeIngest chunks into ChromaDB.chonkie[chroma]
elasticElasticHandshakeIngest chunks into Elasticsearch.chonkie[elastic]
mongodbMongoDBHandshakeIngest chunks into MongoDB.chonkie[mongodb]
pgvectorPgvectorHandshakeIngest chunks into PostgreSQL with pgvector.chonkie[pgvector]
pineconePineconeHandshakeIngest chunks into Pinecone.chonkie[pinecone]
qdrantQdrantHandshakeIngest chunks into Qdrant.chonkie[qdrant]
turbopufferTurbopufferHandshakeIngest chunks into Turbopuffer.chonkie[tpuf]
weaviateWeaviateHandshakeIngest chunks into Weaviate.chonkie[weaviate]
lancedbLanceDBHandshakeIngest chunks into LanceDB.chonkie[lancedb]
milvusMilvusHandshakeIngest chunks into Milvus.chonkie[milvus]
πŸͺ“ Slice 'n' Dice! Chonkie supports 5+ ways to tokenize!

Choose from supported tokenizers or provide your own custom token counting function. Flexibility first!

NameDescriptionOptional Install
characterBasic character-level tokenizer. Default tokenizer.default
wordBasic word-level tokenizer.default
byteByte-level tokenizer operating on UTF-8 encoded bytes.default
tokenizersLoad any tokenizer from the Hugging Face tokenizers library.chonkie[tokenizers]
tiktokenUse OpenAI's tiktoken library (e.g., for gpt-4).chonkie[tiktoken]
transformersLoad tokenizers via AutoTokenizer from HF transformers.chonkie[neural]

default indicates that the feature is available with the default pip install chonkie.

To use a custom token counter, you can pass in any function that takes a string and returns an integer! Something like this:

def custom_token_counter(text: str) -> int:
    return len(text)

chunker = RecursiveChunker(tokenizer=custom_token_counter)

You can use this to extend Chonkie to support any tokenization scheme you want!

🧠 Embed like a boss! Chonkie links up with 16+ embedding pals!

Seamlessly works with various embedding model providers. Bring your favorite embeddings to the CHONK party! Use AutoEmbeddings to load models easily.

Provider / AliasClassDescriptionOptional Install
model2vecModel2VecEmbeddingsUse Model2Vec models.chonkie[model2vec]
sentence-transformersSentenceTransformerEmbeddingsUse any sentence-transformers model.chonkie[st]
openaiOpenAIEmbeddingsUse OpenAI's embedding API.chonkie[openai]
azure-openaiAzureOpenAIEmbeddingsUse Azure OpenAI embedding service.chonkie[azure-openai]
cohereCohereEmbeddingsUse Cohere's embedding API.chonkie[cohere]
geminiGeminiEmbeddingsUse Google's Gemini embedding API.chonkie[gemini]
jinaJinaEmbeddingsUse Jina AI's embedding API.chonkie[jina]
voyageaiVoyageAIEmbeddingsUse Voyage AI's embedding API.chonkie[voyageai]
litellmLiteLLMEmbeddingsUse LiteLLM for 100+ embedding models.chonkie[litellm]
catsuCatsuEmbeddingsUnified adapter for 11+ providers.chonkie[catsu]
mistralMistralEmbeddingsUse Mistral's embedding API.chonkie[catsu]
togetherTogetherEmbeddingsUse Together AI's embedding API.chonkie[catsu]
mixedbreadMixedbreadEmbeddingsUse Mixedbread's embedding API.chonkie[catsu]
nomicNomicEmbeddingsUse Nomic's embedding API.chonkie[catsu]
deepinfraDeepInfraEmbeddingsUse DeepInfra's embedding API.chonkie[catsu]
cloudflareCloudflareEmbeddingsUse Cloudflare Workers AI embeddings.chonkie[catsu]
πŸ§žβ€β™‚οΈ Power Up with Genies! Chonkie supports 5+ LLM providers!

Genies provide interfaces to interact with Large Language Models (LLMs) for advanced chunking strategies or other tasks within the pipeline.

Genie NameClassDescriptionOptional Install
geminiGeminiGenieInteract with Google Gemini APIs.chonkie[gemini]
openaiOpenAIGenieInteract with OpenAI APIs.chonkie[openai]
azure-openaiAzureOpenAIGenieInteract with Azure OpenAI APIs.chonkie[azure-openai]
groqGroqGenieFast inference on Groq hardware.chonkie[groq]
cerebrasCerebrasGenieFastest inference on Cerebras hardware.chonkie[cerebras]

You can also use the OpenAIGenie to interact with any LLM provider that supports the OpenAI API format, by simply changing the model, base_url, and api_key parameters. For example, here's how to use the OpenAIGenie to interact with the Llama-4-Maverick model via OpenRouter:

from chonkie import OpenAIGenie

genie = OpenAIGenie(model="meta-llama/llama-4-maverick",
                    base_url="https://openrouter.ai/api/v1",
                    api_key="your_api_key")
πŸ› οΈ Utilities & Helpers! Chonkie includes handy tools!

Additional utilities to enhance your chunking workflow.

Utility NameClassDescriptionOptional Install
hubHubbieSimple wrapper for HuggingFace Hub operations.chonkie[hub]
vizVisualizerRich console visualizations for chunks.chonkie[viz]

With Chonkie's wide range of integrations, you can easily plug it into your existing infrastructure and start CHONKING!

πŸ€– AI Agent Skills & Plugins

Chonkie provides an official skill and plugin for AI coding agents, giving them deep knowledge of Chonkie's API, chunking strategies, and pipeline patterns β€” so they can help you build RAG pipelines faster.

Supported agents: Claude Code, Cursor, Gemini CLI, and more.

# Via skills.sh (works with Claude Code, Cursor, Copilot, and 20+ agents)
npx skills add chonkie-inc/skills

# Claude Code only
/plugin marketplace add chonkie-inc/skills

Once installed, your agent gains knowledge of all chunkers, the Pipeline API, tokenizer selection, embeddings refineries, vector DB handshakes, the REST API server, recipes, and async/batch processing patterns.

Learn more at github.com/chonkie-inc/skills.

πŸ“Š Benchmarks

"I may be smol hippo, but I pack a big punch!" πŸ¦›

Chonkie is not just cute, it's also fast and efficient! Here's how it stacks up against the competition:

SizeπŸ“¦

  • Wheel Size: 505KB (vs 1-12MB for alternatives)
  • Installed Size: 49MB (vs 80-171MB for alternatives)
  • With Semantic: Still 10x lighter than the closest competition!

Speed⚑

  • Token Chunking: 33x faster than the slowest alternative
  • Sentence Chunking: Almost 2x faster than competitors
  • Semantic Chunking: Up to 2.5x faster than others

Check out our detailed benchmarks to see how Chonkie races past the competition! πŸƒβ€β™‚οΈπŸ’¨

🀝 Contributing

Want to help grow Chonkie? Check out CONTRIBUTING.md to get started! Whether you're fixing bugs, adding features, or improving docs, every contribution helps make Chonkie a better CHONK for everyone.

Remember: No contribution is too small for this tiny hippo! πŸ¦›

πŸ™ Acknowledgements

Chonkie would like to CHONK its way through a special thanks to all the users and contributors who have helped make this library what it is today! Your feedback, issue reports, and improvements have helped make Chonkie the CHONKIEST it can be.

And of course, special thanks to Moto Moto for endorsing Chonkie with his famous quote:

"I like them big, I like them chonkie." ~ Moto Moto

πŸ“ Citation

If you use Chonkie in your research, please cite it as follows:

@software{chonkie2025,
  author = {Minhas, Bhavnick AND Nigam, Shreyash},
  title = {Chonkie: The lightweight ingestion library for fast, efficient and robust RAG pipelines},
  year = {2025},
  publisher = {GitHub},
  howpublished = {\url{https://github.com/chonkie-inc/chonkie}},
}

Contributors

(top 30 of 39)

chonknick

1,059 commits

chonk-lain

672 commits

shreyash-chonkie

128 commits

dependabot[bot]

53 commits

chonkie-inc/chonkie

πŸ¦› CHONK docs with Chonkie ✨ β€” The lightweight ingestion library for fast, efficient and robust RAG pipelines

4,740

stars

2,197

commits

Python

primary language

Sep 2, 2026

updated

docs.chonkie.ai
ai
chonkie
chunker
chunking-algorithm
llms
rag
retrieval-systems
semantic-chunker
similarity-search
splitting-algorithms
text-splitter

README

Chonkie Logo

πŸ¦› Chonkie ✨

PyPI version License Documentation Package size codecov Downloads Discord GitHub stars

The lightweight ingestion library for fast, efficient and robust RAG pipelines

Installation β€’ Usage β€’ Chunkers β€’ Integrations β€’ Benchmarks

Tired of making your gazillionth chunker? Sick of the overhead of large libraries? Want to chunk your texts quickly and efficiently? Chonkie the mighty hippo is here to help!

πŸš€ Feature-rich: All the CHONKs you'd ever need
πŸ”„ End-to-end: Fetch, CHONK, refine, embed and ship straight to your vector DB!
✨ Easy to use: Install, Import, CHONK
⚑ Fast: CHONK at the speed of light! zooooom
πŸͺΆ Light-weight: No bloat, just CHONK
πŸ”Œ 32+ integrations: Works with your favorite tools and vector DBs out of the box!
πŸ’¬ ️Multilingual: Out-of-the-box support for 56 languages
☁️ Cloud-Friendly: CHONK locally or in the Cloud
πŸ¦› Cute CHONK mascot: psst it's a pygmy hippo btw
❀️ Moto Moto's favorite python library

Chonkie is a chunking library that "just works" ✨

πŸ“¦ Installation

Basic Installation

Using pip:

pip install chonkie

Or using uv (faster):

uv pip install chonkie

Full Installation

Chonkie follows the rule of minimum installs. Have a favorite chunker? Read our docs to install only what you need. Don't want to think about it? Simply install all (Not recommended for production environments).

Using pip:

pip install "chonkie[all]"

Or using uv:

uv pip install "chonkie[all]"

πŸš€ Usage

Basic Usage

Here's a basic example to get you started:

# First import the chunker you want from Chonkie
from chonkie import RecursiveChunker

# Initialize the chunker
chunker = RecursiveChunker()

# Chunk some text
chunks = chunker("Chonkie is the goodest boi! My favorite chunking hippo hehe.")

# Access chunks
for chunk in chunks:
    print(f"Chunk: {chunk.text}")
    print(f"Tokens: {chunk.token_count}")

Pipeline Usage

You can also use the chonkie.Pipeline to chain components together and handle complex workflows. Read more about pipelines in the docs!

from chonkie import Pipeline

# Create a pipeline with multiple chunking and refinement steps
pipe = (
    Pipeline()
    .chunk_with("recursive", tokenizer="gpt2", chunk_size=2048, recipe="markdown")
    .chunk_with("semantic", chunk_size=512)
    .refine_with("overlap", context_size=128)
    .refine_with("embeddings", embedding_model="sentence-transformers/all-MiniLM-L6-v2")
)

# CHONK some Texts!
doc = pipe.run(texts="Chonkie is the goodest boi! My favorite chunking hippo hehe.")

# Access the processed chunks in the `doc` object
for chunk in doc.chunks:
    print(chunk.text)

# Run asynchronously for high-throughput applications
import asyncio

async def main():
    doc = await pipe.arun(texts="Chonkie runs fast!")
    print(len(doc.chunks))

asyncio.run(main())

Check out more usage examples in the docs!

🌐 API Server

Run Chonkie as a self-hosted REST API for easy integration into any application:

# Install with API dependencies (includes catsu for multi-provider embeddings)
pip install "chonkie[api,semantic,code,catsu]"

# Start the server using the CLI
chonkie serve

# Or with custom options
chonkie serve --port 3000 --reload --log-level debug

# Or directly with uvicorn
uvicorn chonkie.api.main:app --host 0.0.0.0 --port 8000

Or use Docker:

docker compose up

The API provides endpoints for all chunkers, refineries, and pipelines β€” reusable workflow configurations stored in a local SQLite database.

# Create a reusable pipeline
curl -X POST http://localhost:8000/v1/pipelines \
  -H "Content-Type: application/json" \
  -d '{
    "name": "rag-chunker",
    "steps": [
      {"type": "chunk", "chunker": "semantic", "config": {"chunk_size": 512}},
      {"type": "refine", "refinery": "embeddings", "config": {"embedding_model": "text-embedding-3-small"}}
    ]
  }'

# List your pipelines
curl http://localhost:8000/v1/pipelines

Interactive documentation is available at /docs when the server is running.

βœ‚οΈ Chunkers

Chonkie provides several chunkers to help you split your text efficiently for RAG applications. Here's a quick overview of the available chunkers:

NameAliasDescription
TokenChunkertokenSplits text into fixed-size token chunks.
FastChunkerfastSIMD-accelerated byte-based chunking at 100+ GB/s. Included in the default install.
SentenceChunkersentenceSplits text into chunks based on sentences.
RecursiveChunkerrecursiveSplits text hierarchically using customizable rules to create semantically meaningful chunks.
SemanticChunkersemanticSplits text into chunks based on semantic similarity. Inspired by the work of Greg Kamradt.
LateChunkerlateEmbeds text and then splits it to have better chunk embeddings.
CodeChunkercodeSplits code into structurally meaningful chunks.
NeuralChunkerneuralSplits text using a neural model.
SlumberChunkerslumberSplits text using an LLM to find semantically meaningful chunks. Also known as "AgenticChunker".
TableChunkertableChunks markdown tables by rows or character count.
TeraflopAIChunkerteraflopaiSplits text using the TeraflopAI Segmentation API for domain-specific segmentation.

More on these methods and the approaches taken inside the docs

πŸ”Œ Integrations

Chonkie boasts 45+ integrations across tokenizers, embedding providers, LLMs, refineries, porters, vector databases, and utilities, ensuring it fits seamlessly into your existing workflow.

πŸ‘¨β€πŸ³ Chefs & πŸ“ Fetchers! Text preprocessing and data loading!

Chefs handle text preprocessing, while Fetchers load data from various sources.

ComponentClassDescriptionOptional Install
chefTextChefText preprocessing and cleaning.default
chefMarkdownChefParse markdown into structured MarkdownDocuments.default
chefTableChefProcess CSV/Excel files into MarkdownDocuments.chonkie[table]
chefMistralOCRExtract text from images/PDFs via Mistral OCR API.chonkie[mistral]
fetcherFileFetcherLoad text from files and directories.default
🏭 Refine your CHONKs with Context and Embeddings! Chonkie supports 2+ refineries!

Refineries help you post-process and enhance your chunks after initial chunking.

Refinery NameClassDescriptionOptional Install
overlapOverlapRefineryMerge overlapping chunks based on similarity.default
embeddingsEmbeddingsRefineryAdd embeddings to chunks using any provider.chonkie[semantic]
🐴 Exporting CHONKs! Chonkie supports 2+ Porters!

Porters help you save your chunks easily.

Porter NameClassDescriptionOptional Install
jsonJSONPorterExport chunks to a JSON file.default
datasetsDatasetsPorterExport chunks to HuggingFace datasets.chonkie[datasets]
🀝 Shake hands with your DB! Chonkie connects with 10+ vector stores!

Handshakes provide a unified interface to ingest chunks directly into your favorite vector databases.

Handshake NameClassDescriptionOptional Install
chromaChromaHandshakeIngest chunks into ChromaDB.chonkie[chroma]
elasticElasticHandshakeIngest chunks into Elasticsearch.chonkie[elastic]
mongodbMongoDBHandshakeIngest chunks into MongoDB.chonkie[mongodb]
pgvectorPgvectorHandshakeIngest chunks into PostgreSQL with pgvector.chonkie[pgvector]
pineconePineconeHandshakeIngest chunks into Pinecone.chonkie[pinecone]
qdrantQdrantHandshakeIngest chunks into Qdrant.chonkie[qdrant]
turbopufferTurbopufferHandshakeIngest chunks into Turbopuffer.chonkie[tpuf]
weaviateWeaviateHandshakeIngest chunks into Weaviate.chonkie[weaviate]
lancedbLanceDBHandshakeIngest chunks into LanceDB.chonkie[lancedb]
milvusMilvusHandshakeIngest chunks into Milvus.chonkie[milvus]
πŸͺ“ Slice 'n' Dice! Chonkie supports 5+ ways to tokenize!

Choose from supported tokenizers or provide your own custom token counting function. Flexibility first!

NameDescriptionOptional Install
characterBasic character-level tokenizer. Default tokenizer.default
wordBasic word-level tokenizer.default
byteByte-level tokenizer operating on UTF-8 encoded bytes.default
tokenizersLoad any tokenizer from the Hugging Face tokenizers library.chonkie[tokenizers]
tiktokenUse OpenAI's tiktoken library (e.g., for gpt-4).chonkie[tiktoken]
transformersLoad tokenizers via AutoTokenizer from HF transformers.chonkie[neural]

default indicates that the feature is available with the default pip install chonkie.

To use a custom token counter, you can pass in any function that takes a string and returns an integer! Something like this:

def custom_token_counter(text: str) -> int:
    return len(text)

chunker = RecursiveChunker(tokenizer=custom_token_counter)

You can use this to extend Chonkie to support any tokenization scheme you want!

🧠 Embed like a boss! Chonkie links up with 16+ embedding pals!

Seamlessly works with various embedding model providers. Bring your favorite embeddings to the CHONK party! Use AutoEmbeddings to load models easily.

Provider / AliasClassDescriptionOptional Install
model2vecModel2VecEmbeddingsUse Model2Vec models.chonkie[model2vec]
sentence-transformersSentenceTransformerEmbeddingsUse any sentence-transformers model.chonkie[st]
openaiOpenAIEmbeddingsUse OpenAI's embedding API.chonkie[openai]
azure-openaiAzureOpenAIEmbeddingsUse Azure OpenAI embedding service.chonkie[azure-openai]
cohereCohereEmbeddingsUse Cohere's embedding API.chonkie[cohere]
geminiGeminiEmbeddingsUse Google's Gemini embedding API.chonkie[gemini]
jinaJinaEmbeddingsUse Jina AI's embedding API.chonkie[jina]
voyageaiVoyageAIEmbeddingsUse Voyage AI's embedding API.chonkie[voyageai]
litellmLiteLLMEmbeddingsUse LiteLLM for 100+ embedding models.chonkie[litellm]
catsuCatsuEmbeddingsUnified adapter for 11+ providers.chonkie[catsu]
mistralMistralEmbeddingsUse Mistral's embedding API.chonkie[catsu]
togetherTogetherEmbeddingsUse Together AI's embedding API.chonkie[catsu]
mixedbreadMixedbreadEmbeddingsUse Mixedbread's embedding API.chonkie[catsu]
nomicNomicEmbeddingsUse Nomic's embedding API.chonkie[catsu]
deepinfraDeepInfraEmbeddingsUse DeepInfra's embedding API.chonkie[catsu]
cloudflareCloudflareEmbeddingsUse Cloudflare Workers AI embeddings.chonkie[catsu]
πŸ§žβ€β™‚οΈ Power Up with Genies! Chonkie supports 5+ LLM providers!

Genies provide interfaces to interact with Large Language Models (LLMs) for advanced chunking strategies or other tasks within the pipeline.

Genie NameClassDescriptionOptional Install
geminiGeminiGenieInteract with Google Gemini APIs.chonkie[gemini]
openaiOpenAIGenieInteract with OpenAI APIs.chonkie[openai]
azure-openaiAzureOpenAIGenieInteract with Azure OpenAI APIs.chonkie[azure-openai]
groqGroqGenieFast inference on Groq hardware.chonkie[groq]
cerebrasCerebrasGenieFastest inference on Cerebras hardware.chonkie[cerebras]

You can also use the OpenAIGenie to interact with any LLM provider that supports the OpenAI API format, by simply changing the model, base_url, and api_key parameters. For example, here's how to use the OpenAIGenie to interact with the Llama-4-Maverick model via OpenRouter:

from chonkie import OpenAIGenie

genie = OpenAIGenie(model="meta-llama/llama-4-maverick",
                    base_url="https://openrouter.ai/api/v1",
                    api_key="your_api_key")
πŸ› οΈ Utilities & Helpers! Chonkie includes handy tools!

Additional utilities to enhance your chunking workflow.

Utility NameClassDescriptionOptional Install
hubHubbieSimple wrapper for HuggingFace Hub operations.chonkie[hub]
vizVisualizerRich console visualizations for chunks.chonkie[viz]

With Chonkie's wide range of integrations, you can easily plug it into your existing infrastructure and start CHONKING!

πŸ€– AI Agent Skills & Plugins

Chonkie provides an official skill and plugin for AI coding agents, giving them deep knowledge of Chonkie's API, chunking strategies, and pipeline patterns β€” so they can help you build RAG pipelines faster.

Supported agents: Claude Code, Cursor, Gemini CLI, and more.

# Via skills.sh (works with Claude Code, Cursor, Copilot, and 20+ agents)
npx skills add chonkie-inc/skills

# Claude Code only
/plugin marketplace add chonkie-inc/skills

Once installed, your agent gains knowledge of all chunkers, the Pipeline API, tokenizer selection, embeddings refineries, vector DB handshakes, the REST API server, recipes, and async/batch processing patterns.

Learn more at github.com/chonkie-inc/skills.

πŸ“Š Benchmarks

"I may be smol hippo, but I pack a big punch!" πŸ¦›

Chonkie is not just cute, it's also fast and efficient! Here's how it stacks up against the competition:

SizeπŸ“¦

  • Wheel Size: 505KB (vs 1-12MB for alternatives)
  • Installed Size: 49MB (vs 80-171MB for alternatives)
  • With Semantic: Still 10x lighter than the closest competition!

Speed⚑

  • Token Chunking: 33x faster than the slowest alternative
  • Sentence Chunking: Almost 2x faster than competitors
  • Semantic Chunking: Up to 2.5x faster than others

Check out our detailed benchmarks to see how Chonkie races past the competition! πŸƒβ€β™‚οΈπŸ’¨

🀝 Contributing

Want to help grow Chonkie? Check out CONTRIBUTING.md to get started! Whether you're fixing bugs, adding features, or improving docs, every contribution helps make Chonkie a better CHONK for everyone.

Remember: No contribution is too small for this tiny hippo! πŸ¦›

πŸ™ Acknowledgements

Chonkie would like to CHONK its way through a special thanks to all the users and contributors who have helped make this library what it is today! Your feedback, issue reports, and improvements have helped make Chonkie the CHONKIEST it can be.

And of course, special thanks to Moto Moto for endorsing Chonkie with his famous quote:

"I like them big, I like them chonkie." ~ Moto Moto

πŸ“ Citation

If you use Chonkie in your research, please cite it as follows:

@software{chonkie2025,
  author = {Minhas, Bhavnick AND Nigam, Shreyash},
  title = {Chonkie: The lightweight ingestion library for fast, efficient and robust RAG pipelines},
  year = {2025},
  publisher = {GitHub},
  howpublished = {\url{https://github.com/chonkie-inc/chonkie}},
}

Contributors

(top 30 of 39)

chonknick

1,059 commits

chonk-lain

672 commits

shreyash-chonkie

128 commits

dependabot[bot]

53 commits

Languages

Python

99.8%