top | item 46502149 (no title) brene | 1 month ago Do you see this project merge with the Chonkie at some point? Or do you intend to keep it separate? discuss order hn newest snyy|1 month ago Memchunk is already in Chonkie as the `FastChunker`To install: pip install chonkie[fast]``` from chonkie import FastChunkerchunker = FastChunker(chunk_size=4096) chunks = chunker(huge_document) ```
snyy|1 month ago Memchunk is already in Chonkie as the `FastChunker`To install: pip install chonkie[fast]``` from chonkie import FastChunkerchunker = FastChunker(chunk_size=4096) chunks = chunker(huge_document) ```
snyy|1 month ago
To install: pip install chonkie[fast]
``` from chonkie import FastChunker
chunker = FastChunker(chunk_size=4096) chunks = chunker(huge_document) ```