Hacker News new | ask | show | jobs
by brene 157 days ago
Do you see this project merge with the Chonkie at some point? Or do you intend to keep it separate?
1 comments

Memchunk is already in Chonkie as the `FastChunker`

To install: pip install chonkie[fast]

``` from chonkie import FastChunker

chunker = FastChunker(chunk_size=4096) chunks = chunker(huge_document) ```