@pensar/apex 0.0.75-canary.9ce211b5 → 0.0.76-canary.1d64fde1
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/build/index.js +36 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -30594,6 +30594,12 @@ var init_anthropic = __esm(() => {
|
|
|
30594
30594
|
provider: "anthropic",
|
|
30595
30595
|
contextLength: 200000
|
|
30596
30596
|
},
|
|
30597
|
+
{
|
|
30598
|
+
id: "claude-opus-4-6",
|
|
30599
|
+
name: "Claude Opus 4.6",
|
|
30600
|
+
provider: "anthropic",
|
|
30601
|
+
contextLength: 200000
|
|
30602
|
+
},
|
|
30597
30603
|
{
|
|
30598
30604
|
id: "claude-opus-4-5",
|
|
30599
30605
|
name: "Claude Opus 4.5",
|
|
@@ -30703,6 +30709,12 @@ var init_openrouter = __esm(() => {
|
|
|
30703
30709
|
provider: "openrouter",
|
|
30704
30710
|
contextLength: 200000
|
|
30705
30711
|
},
|
|
30712
|
+
{
|
|
30713
|
+
id: "anthropic/claude-opus-4.6",
|
|
30714
|
+
name: "Claude Opus 4.6 (OpenRouter)",
|
|
30715
|
+
provider: "openrouter",
|
|
30716
|
+
contextLength: 200000
|
|
30717
|
+
},
|
|
30706
30718
|
{
|
|
30707
30719
|
id: "anthropic/claude-opus-4.5",
|
|
30708
30720
|
name: "Claude Opus 4.5 (OpenRouter)",
|
|
@@ -30998,6 +31010,12 @@ var init_bedrock = __esm(() => {
|
|
|
30998
31010
|
provider: "bedrock",
|
|
30999
31011
|
contextLength: 200000
|
|
31000
31012
|
},
|
|
31013
|
+
{
|
|
31014
|
+
id: "anthropic.claude-opus-4-6-v1:0",
|
|
31015
|
+
name: "Claude Opus 4.6 (Bedrock)",
|
|
31016
|
+
provider: "bedrock",
|
|
31017
|
+
contextLength: 200000
|
|
31018
|
+
},
|
|
31001
31019
|
{
|
|
31002
31020
|
id: "cohere.command-text-v14",
|
|
31003
31021
|
name: "Cohere Command Text v14 (Bedrock)",
|
|
@@ -31208,6 +31226,12 @@ var init_bedrock = __esm(() => {
|
|
|
31208
31226
|
provider: "bedrock",
|
|
31209
31227
|
contextLength: 200000
|
|
31210
31228
|
},
|
|
31229
|
+
{
|
|
31230
|
+
id: "us.anthropic.claude-opus-4-6-v1:0",
|
|
31231
|
+
name: "Claude Opus 4.6 (US)",
|
|
31232
|
+
provider: "bedrock",
|
|
31233
|
+
contextLength: 200000
|
|
31234
|
+
},
|
|
31211
31235
|
{
|
|
31212
31236
|
id: "us.meta.llama3-1-8b-instruct-v1:0",
|
|
31213
31237
|
name: "Llama 3.1 8B (US)",
|
|
@@ -31285,6 +31309,12 @@ var init_bedrock = __esm(() => {
|
|
|
31285
31309
|
name: "Claude Sonnet 4.5 (Global)",
|
|
31286
31310
|
provider: "bedrock",
|
|
31287
31311
|
contextLength: 200000
|
|
31312
|
+
},
|
|
31313
|
+
{
|
|
31314
|
+
id: "global.anthropic.claude-opus-4-6-v1:0",
|
|
31315
|
+
name: "Claude Opus 4.6 (Global)",
|
|
31316
|
+
provider: "bedrock",
|
|
31317
|
+
contextLength: 200000
|
|
31288
31318
|
}
|
|
31289
31319
|
];
|
|
31290
31320
|
});
|
|
@@ -35376,6 +35406,9 @@ function toReference(stored) {
|
|
|
35376
35406
|
if (stored.tokens?.customHeaders) {
|
|
35377
35407
|
ref.customHeaderKeys = Object.keys(stored.tokens.customHeaders);
|
|
35378
35408
|
}
|
|
35409
|
+
const ctx = stored.metadata?.context;
|
|
35410
|
+
if (typeof ctx === "string" && ctx)
|
|
35411
|
+
ref.context = ctx;
|
|
35379
35412
|
return ref;
|
|
35380
35413
|
}
|
|
35381
35414
|
|
|
@@ -35471,6 +35504,8 @@ class CredentialManager {
|
|
|
35471
35504
|
if (ref.customHeaderKeys?.length) {
|
|
35472
35505
|
parts.push(` Header keys: ${ref.customHeaderKeys.join(", ")}`);
|
|
35473
35506
|
}
|
|
35507
|
+
if (ref.context)
|
|
35508
|
+
parts.push(` Context: ${ref.context}`);
|
|
35474
35509
|
return parts.join(`
|
|
35475
35510
|
`);
|
|
35476
35511
|
});
|
|
@@ -209108,7 +209143,7 @@ import fs2 from "fs/promises";
|
|
|
209108
209143
|
// package.json
|
|
209109
209144
|
var package_default2 = {
|
|
209110
209145
|
name: "@pensar/apex",
|
|
209111
|
-
version: "0.0.
|
|
209146
|
+
version: "0.0.76-canary.1d64fde1",
|
|
209112
209147
|
description: "AI-powered penetration testing CLI tool with terminal UI",
|
|
209113
209148
|
module: "src/tui/index.tsx",
|
|
209114
209149
|
main: "build/index.js",
|
package/package.json
CHANGED