memchunk 0.1.3 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,11 +9,11 @@
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
- <a href="https://crates.io/crates/memchunk"><img src="https://img.shields.io/crates/v/memchunk.svg" alt="crates.io"></a>
13
- <a href="https://pypi.org/project/memchunk"><img src="https://img.shields.io/pypi/v/memchunk.svg" alt="PyPI"></a>
14
- <a href="https://www.npmjs.com/package/memchunk"><img src="https://img.shields.io/npm/v/memchunk.svg" alt="npm"></a>
15
- <a href="https://github.com/chonkie-inc/memchunk"><img src="https://img.shields.io/badge/github-memchunk-blue" alt="GitHub"></a>
16
- <a href="LICENSE-MIT"><img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg" alt="License"></a>
12
+ <a href="https://crates.io/crates/memchunk"><img src="https://img.shields.io/crates/v/memchunk.svg?color=e74c3c" alt="crates.io"></a>
13
+ <a href="https://pypi.org/project/memchunk"><img src="https://img.shields.io/pypi/v/memchunk.svg?color=e67e22" alt="PyPI"></a>
14
+ <a href="https://www.npmjs.com/package/memchunk"><img src="https://img.shields.io/npm/v/memchunk.svg?color=2ecc71" alt="npm"></a>
15
+ <a href="https://github.com/chonkie-inc/memchunk"><img src="https://img.shields.io/badge/github-memchunk-3498db" alt="GitHub"></a>
16
+ <a href="LICENSE-MIT"><img src="https://img.shields.io/badge/license-MIT%2FApache--2.0-9b59b6.svg" alt="License"></a>
17
17
  </p>
18
18
 
19
19
  ---
@@ -22,7 +22,7 @@ you know how every chunking library claims to be fast? yeah, we actually meant i
22
22
 
23
23
  **memchunk** splits text at semantic boundaries (periods, newlines, the usual suspects) and does it stupid fast. we're talking "chunk the entire english wikipedia in 120ms" fast.
24
24
 
25
- want to know how? [read the blog post](https://minha.sh/posts/so-you-want-to-chunk-really-fast) where we nerd out about SIMD instructions and lookup tables.
25
+ want to know how? [read the blog post](https://minha.sh/posts/so,-you-want-to-chunk-really-fast) where we nerd out about SIMD instructions and lookup tables.
26
26
 
27
27
  ## 📦 installation
28
28
 
@@ -30,6 +30,8 @@ want to know how? [read the blog post](https://minha.sh/posts/so-you-want-to-chu
30
30
  npm install memchunk
31
31
  ```
32
32
 
33
+ looking for [rust](https://github.com/chonkie-inc/memchunk) or [python](https://github.com/chonkie-inc/memchunk/tree/main/packages/python)?
34
+
33
35
  ## 🚀 usage
34
36
 
35
37
  ```javascript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memchunk",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "The fastest semantic text chunking library",
5
5
  "type": "module",
6
6
  "main": "index.js",