# Basic installation (TokenChunker, SentenceChunker, RecursiveChunker)
pip install chonkie
# For Hugging Face Hub support
pip install "chonkie[hub]"
# For visualization support (e.g., rich text output)
pip install "chonkie[viz]"
# For the default semantic provider support (includes Model2Vec)
pip install "chonkie[semantic]"
# For OpenAI embeddings support
pip install "chonkie[openai]"
# For Cohere embeddings support
pip install "chonkie[cohere]"
# For Jina embeddings support
pip install "chonkie[jina]"
# For SentenceTransformer embeddings support (required by LateChunker)
pip install "chonkie[st]"
# For CodeChunker support
pip install "chonkie[code]"
# For NeuralChunker support (BERT-based)
pip install "chonkie[neural]"
# For SlumberChunker support (Genie/LLM interface)
pip install "chonkie[genie]"
# For Groq Genie support (fast inference)
pip install "chonkie[groq]"
# For Cerebras Genie support (fastest inference)
pip install "chonkie[cerebras]"
# For installing multiple features together
pip install "chonkie[st, code, genie]"
# For all features
pip install "chonkie[all]"