-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.2 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@aispin/plugin-verifier",
"description": "LLM-as-a-Verifier for dsh with the Best-of-N conversation mode built in: rank N candidates with a fine-grained verifier (expected grade over the logprob distribution), on demand via the verify tool or automatically on every turn of a Best-of-N session. Independent implementation of arXiv:2607.05391. By Aispin",
"version": "0.3.3",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./client": {
"types": "./lib/types/client.d.ts",
"default": "./lib/client.js"
},
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"files": [
"lib/index.js",
"lib/client.js",
"lib/types/**/*.js",
"lib/types/**/*.d.ts",
"cordis.patch.yml"
],
"aispin": {
"plugin": {
"trust": "first-party",
"seamDeps": [
"tools"
],
"provides": [
"verifier"
]
}
},
"dsh": {
"client": {
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-web-react"
],
"platform": "web"
},
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/aispin-dev/llm-as-a-Verifier-dsh.git"
},
"homepage": "https://github.com/aispin-dev/llm-as-a-Verifier-dsh#readme",
"bugs": {
"url": "https://github.com/aispin-dev/llm-as-a-Verifier-dsh/issues"
},
"keywords": [
"dsh-plugin",
"deepseek-harness",
"llm-verifier",
"llm-as-a-verifier",
"best-of-n",
"best-of-5",
"test-time-scaling",
"test-time-compute",
"verifier",
"selection",
"agent-evaluation",
"sampling",
"deepseek",
"deepseek-v4-flash"
],
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json && tsdown && cp src/client.js lib/client.js",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit",
"test": "vitest run"
},
"dependencies": {},
"peerDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.7",
"@deepseek-ai/dsh-client-ui-settings": "^0.1.0-rc.7",
"@deepseek-ai/dsh-client-web-react": "^0.1.0-rc.7",
"@deepseek-ai/dsh-credentials": "^0.1.0-rc.7",
"@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
"@deepseek-ai/dsh-settings": "^0.1.0-rc.7",
"@deepseek-ai/dsh-tools": "^0.1.0-rc.6",
"@deepseek-ai/schemastery": "^3.18.1",
"react": "^18.2.0"
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.7",
"@deepseek-ai/dsh-client-ui-settings": "^0.1.0-rc.7",
"@deepseek-ai/dsh-client-web-react": "^0.1.0-rc.7",
"@deepseek-ai/dsh-credentials": "^0.1.0-rc.7",
"@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
"@deepseek-ai/dsh-settings": "^0.1.0-rc.7",
"@deepseek-ai/dsh-tools": "^0.1.0-rc.6",
"@deepseek-ai/schemastery": "^3.18.1",
"@types/node": "^22.20.0",
"tsdown": "^0.22.14",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}