-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 740 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "maxx",
"private": true,
"type": "module",
"bin": {
"maxx": "./cli.mjs"
},
"scripts": {
"start": "node --disable-warning=ExperimentalWarning server.mjs",
"start:best": "OLLAMA_MODEL=qwen3.5:9b node --disable-warning=ExperimentalWarning server.mjs",
"eval": "promptfoo eval -c evals/promptfooconfig.yaml",
"eval:json": "promptfoo eval -c evals/promptfooconfig.yaml -o evals/results/latest.json",
"eval:view": "promptfoo view",
"eval:compare": "node evals/compare-results.mjs",
"prompts:generate": "node evals/generate-prompts.mjs",
"bench:run": "node evals/run-benchmark.mjs",
"bench:analyze": "node evals/analyze.mjs"
},
"devDependencies": {
"promptfoo": "latest"
}
}