Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
JinaEmbeddings is a utility for embedding chunks.
jina
pip install "chonkie[jina]"
from chonkie import JinaEmbeddings # Initialize the Jina embeddings embeddings = JinaEmbeddings() # Initialize the semantic chunker chunker = SemanticChunker(embeddings) # Chunk the text text = ... # Your text string # CHONK! chunks = chunker(text)
Was this page helpful?