-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "fast-topic-analysis",
"version": "1.1.0",
"description": "Semantically create chunks from large texts. Useful for workflows involving large language models (LLMs).",
"repository": {
"type": "git",
"url": "https://github.com/jparkerweb/fast-topic-analysis.git"
},
"bugs": {
"url": "https://github.com/jparkerweb/fast-topic-analysis/issues",
"email": "[email protected]"
},
"main": "index.js",
"type": "module",
"scripts": {
"start": "node run-test.js",
"test": "node run-test.js",
"generate": "node generate.js",
"clean": "npx rimraf node_modules && npx rimraf package-lock.json && npm install"
},
"keywords": [
"nlp",
"embeddings",
"text-analysis",
"machine-learning",
"topic-detection",
"semantic-analysis",
"text-classification",
"natural-language-processing",
"huggingface",
"transformers",
"onnx",
"text-similarity",
"document-classification",
"content-filtering",
"text-processing"
],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@huggingface/transformers": "^3.2.4",
"chalk": "^5.4.1",
"dotenv": "^16.4.7",
"sentence-parse": "1.0.3"
}
}