-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "semantic-chunking",
"version": "2.4.2",
"description": "Semantically create chunks from large texts. Useful for workflows involving large language models (LLMs).",
"homepage": "https://www.equilllabs.com/projects/semantic-chunking",
"repository": {
"type": "git",
"url": "https://github.com/jparkerweb/semantic-chunking.git"
},
"bugs": {
"url": "https://github.com/jparkerweb/semantic-chunking/issues",
"email": "[email protected]"
},
"main": "chunkit.js",
"type": "module",
"keywords": [
"semantic",
"chunking",
"sentence",
"similarity",
"cosine",
"chunk",
"rag",
"splitting",
"transformers",
"transformers.js",
"emmbeddings",
"onnx",
"xenova",
"text-processing",
"nlp",
"webui",
"ml",
"BERT"
],
"author": "[email protected]",
"license": "ISC",
"scripts": {
"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"
},
"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"
}
}