Skip to content

Commit

Permalink
v2.4.3 - update sentence-parse lib
Browse files Browse the repository at this point in the history
  • Loading branch information
jparkerweb committed Jan 30, 2025
1 parent f9f205b commit 8cdd15d
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 39 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [2.4.3] - 2025-01-30
### 📦 Updated
- Updated `sentence-parse` to v1.3.1 (wont crash on null inputs)

## [2.4.2] - 2025-01-06
### 📦 Updated
- Updated sentence splitter to use `sentence-parse`
Expand Down
72 changes: 36 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semantic-chunking",
"version": "2.4.2",
"version": "2.4.3",
"description": "Semantically create chunks from large texts. Useful for workflows involving large language models (LLMs).",
"homepage": "https://www.equilllabs.com/projects/semantic-chunking",
"repository": {
Expand Down Expand Up @@ -39,13 +39,16 @@
"clean-models": "find ./models -type f ! -name '*.url' -delete",
"clean-models-win": "powershell -Command \"Get-ChildItem -Path ./models -Recurse | Where-Object { !$_.PSIsContainer -and $_.Extension -ne '.url' } | Remove-Item\"",
"download-models": "node ./tools/download-models.js",
"clean": "npx rimraf node_modules package-lock.json && npm install"
"clean": "npx rimraf node_modules package-lock.json && npm install",
"example-chunkit": "node ./example/example-chunkit.js",
"example-sentenceit": "node ./example/example-sentenceit.js",
"example-cramit": "node ./example/example-cramit.js"
},
"dependencies": {
"@huggingface/transformers": "^3.2.4",
"cli-progress": "^3.12.0",
"fs": "^0.0.1-security",
"lru-cache": "^11.0.2",
"sentence-parse": "^1.0.3"
"sentence-parse": "^1.3.1"
}
}

0 comments on commit 8cdd15d

Please sign in to comment.