chunkr 0.1.10

A fast and quick chunking library for rust
Documentation

🚀 Getting Started

Add to your project

To add chunkr to your project and start chunking, use the cargo cli

cargo add chunkr

This will download and add the latest version to your project. Or you can directly add the 'chunkr' in the the cargo.toml file and run build command.

cargo build

Run project locally

Clone the repository

git clone https://github.com/d1pankarmedhi/chunkr.git

cd chunkr

🏗️ Examples

Check out these examples to get started.

Chunking

These are some chunking strategy examples:

Run them using the cargo command like:

cargo run --example chunk_by_words 5 "Hello there how are you. I am fine, Thank you"
# ["Hello there how are you.", "I am fine, Thank you"]

💡 Contributing

As an open-source project, we are open to all kinds of contribution, be it through code, documentation, issues, bugs, or even feature suggestions.

Feel free to check out Contribution guide for more details.

📝 License

This project is licensed under the MIT License - see the LICENSE.md file for details