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?