chonkie is a free, open source ai development platforms project written in Python and released under MIT. It has 4,755 GitHub stars, 356 forks and 48 open issues, and was last pushed 4 hours ago. On this registry it ranks #88 of 116 tracked projects in AI Development Platforms, with 5 head-to-head comparisons available.

What is chonkie?

Chonkie is a lightweight, MIT-licensed Python ingestion library that turns raw documents into retrieval-ready chunks for RAG pipelines, and it is built for developers who are tired of writing yet another custom chunker or absorbing the overhead of a large framework just to split text.

What it is

Chonkie lives in the Python AI and machine learning ecosystem, where it occupies the ingestion stage of a retrieval-augmented generation stack. It provides chunkers that split text into pieces suited to embedding and similarity search, refiners that post-process those chunks, and a chonkie.Pipeline abstraction that chains the steps together. A pipeline can fetch, chunk, refine, embed and ship straight to a vector database, and the library states that it works out of the box with over 32 integrations covering common tools and vector stores. Semantic chunking, similarity search, and recursive splitting are all part of the shipped feature set.

The concrete problem it solves is the repeated, unrewarding work of hand-rolling a chunker for every project. The README opens by asking whether the reader is tired of making their gazillionth chunker and sick of the overhead of large libraries, which frames the project as a direct replacement for ad hoc splitting code and for heavyweight frameworks used only for their text-splitting utilities. It also targets efficiency: the package is 505KB, and installation is deliberately modular so only the components a project actually needs are pulled in.

Key capabilities

  • Chunkers exposed as importable classes, such as RecursiveChunker, which is called on a string and returns chunk objects carrying .text and .token_count.
  • chonkie.Pipeline for composing workflows, for example chunk_with("recursive", tokenizer="gpt2", chunk_size=2048, recipe="markdown") followed by chunk_with("semantic", chunk_size=512).
  • Refinement stages including refine_with("overlap", context_size=128) and refine_with("embeddings", embedding_model="sentence-transformers/all-MiniLM-L6-v2").
  • Asynchronous execution through pipe.arun() for high-throughput applications.
  • Over 32 integrations with tools and vector databases, plus end-to-end fetch, chunk, refine, embed and ship behaviour.
  • Out-of-the-box multilingual support covering 56 languages.
  • Choice of execution location, either locally or in Chonkie Cloud at labs.chonkie.ai.

Who uses it and how

  • RAG teams that need a complete ingestion path, from fetching source documents through to shipping embedded chunks into a vector database.
  • Projects that avoid the bloat of large libraries by installing only the extras each chosen chunker requires.
  • Multilingual corpora, since the library ships support for 56 languages without extra configuration.
  • Services processing text asynchronously at high throughput, using the arun entry point on a shared pipeline object.
  • Documentation and markdown ingestion, where the recipe="markdown" option drives recursive chunking against document structure.

Getting started

Install with pip install chonkie or the faster uv pip install chonkie. To pull in every component at once, install pip install "chonkie[all]", although the README notes that the full install is not recommended for production environments; documentation lives at docs.chonkie.ai.

How it compares

Chonkie stands alone in this registry: no other entry is listed as a comparable tool, and the project's own materials name no direct alternatives. Its positioning is defined against the general problem of repeated custom chunkers and the import overhead of large libraries, rather than against a named set of competing products.

When to use it β€” and when not to

A team adopting Chonkie must choose its optional dependencies deliberately, because the library follows a rule of minimum installs and expects the reader to consult external documentation to pick the right extras; the chonkie[all] shortcut is explicitly discouraged for production. Anyone wanting a single batteries-included install with no per-chunker decisions, or an ingestion service that runs entirely without writing code, is better served elsewhere, though the Cloud option at labs.chonkie.ai narrows that gap. The repository is otherwise healthy and actively maintained, with a permissive MIT licence and a substantial integration surface.

project readme (upstream, from github) β€” read inline

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:

Name Alias Description
TokenChunker token Splits text into fixed-size token chunks.
FastChunker fast SIMD-accelerated byte-based chunking at 100+ GB/s. Included in the default install.
SentenceChunker sentence Splits text into chunks based on sentences.
RecursiveChunker recursive Splits text hierarchically using customizable rules to create semantically meaningful chunks.
SemanticChunker semantic Splits text into chunks based on semantic similarity. Inspired by the work of Greg Kamradt.
LateChunker late Embeds text and then splits it to have better chunk embeddings.
CodeChunker code Splits code into structurally meaningful chunks.
NeuralChunker neural Splits text using a neural model.
SlumberChunker slumber Splits text using an LLM to find semantically meaningful chunks. Also known as "AgenticChunker".
TableChunker table Chunks markdown tables by rows or character count.
TeraflopAIChunker teraflopai Splits 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.

Component Class Description Optional Install
chef TextChef Text preprocessing and cleaning. default
chef MarkdownChef Parse markdown into structured MarkdownDocuments. default
chef TableChef Process CSV/Excel files into MarkdownDocuments. chonkie[table]
chef MistralOCR Extract text from images/PDFs via Mistral OCR API. chonkie[mistral]
fetcher FileFetcher Load text from files and directories. `def

readme truncated β€” read the full docs on github

Frequently asked questions

Is chonkie free to use?

chonkie is open source under the MIT licence. There is no licence fee and no seat count β€” you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does chonkie do?

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

What is chonkie written in?

chonkie is primarily written in Python. Its source is publicly available at https://github.com/feyninc/chonkie, and it has 4,755 GitHub stars.