-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 KB
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
52
{
"name": "models",
"version": "0.0.0",
"description": "Models for Socket CLI (MiniLM-L6, CodeT5)",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "node scripts/build.mts",
"build:codet5": "node scripts/build.mts --codet5",
"build:force": "node scripts/build.mts --force",
"build:minilm": "node scripts/build.mts --minilm",
"clean": "node scripts/clean.mts",
"cover": "vitest run --coverage",
"test": "vitest run"
},
"dependencies": {
"@socketsecurity/lib-stable": "catalog:",
"build-infra": "workspace:*"
},
"devDependencies": {
"@vitest/coverage-v8": "catalog:",
"vitest": "catalog:"
},
"moduleSources": {
"minilm-l6": {
"primary": "sentence-transformers/all-MiniLM-L6-v2",
"revision": "7dbbc90392e2f80f3d3c277d6e90027e55de9125",
"fallbacks": [
"microsoft/all-MiniLM-L6-v2",
"optimum/all-MiniLM-L6-v2"
],
"files": [
"model.onnx",
"tokenizer.json"
],
"task": "feature-extraction"
},
"codet5": {
"primary": "Salesforce/codet5-base",
"revision": "main",
"fallbacks": [
"Salesforce/codet5-small"
],
"files": [
"model.onnx",
"tokenizer.json"
],
"task": "feature-extraction"
}
}
}