@pensar/apex 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -73
- package/bin/pensar.js +55 -5
- package/build/benchmark.js +46222 -0
- package/build/index.js +12 -0
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -33726,6 +33726,18 @@ var AVAILABLE_MODELS = [
|
|
|
33726
33726
|
provider: "openai",
|
|
33727
33727
|
contextLength: 128000
|
|
33728
33728
|
},
|
|
33729
|
+
{
|
|
33730
|
+
id: "anthropic/claude-haiku-4-5",
|
|
33731
|
+
name: "Claude Haiku 4.5 (OpenRouter)",
|
|
33732
|
+
provider: "openrouter",
|
|
33733
|
+
contextLength: 200000
|
|
33734
|
+
},
|
|
33735
|
+
{
|
|
33736
|
+
id: "anthropic/claude-sonnet-4-5",
|
|
33737
|
+
name: "Claude Sonnet 4.5 (OpenRouter)",
|
|
33738
|
+
provider: "openrouter",
|
|
33739
|
+
contextLength: 200000
|
|
33740
|
+
},
|
|
33729
33741
|
{
|
|
33730
33742
|
id: "anthropic/claude-sonnet-4",
|
|
33731
33743
|
name: "Claude Sonnet 4 (OpenRouter)",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pensar/apex",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "AI-powered penetration testing CLI tool with terminal UI",
|
|
5
5
|
"module": "src/tui/index.tsx",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"LICENSE"
|
|
16
16
|
],
|
|
17
17
|
"scripts": {
|
|
18
|
-
"build": "bun build src/tui/index.tsx --outdir build --target node --format esm",
|
|
18
|
+
"build": "bun build src/tui/index.tsx --outdir build --target node --format esm && bun build scripts/benchmark.ts --outdir build --target node --format esm",
|
|
19
19
|
"dev": "bun run scripts/watch.ts",
|
|
20
20
|
"dev:debug": "SHOW_CONSOLE=true bun run scripts/watch.ts",
|
|
21
21
|
"start": "bun run src/tui/index.tsx",
|