@pensar/apex 0.0.66 → 0.0.67-canary.9f6703d0

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.
Files changed (2) hide show
  1. package/build/index.js +8 -0
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -106241,6 +106241,7 @@ When to use delegate_to_auth_subagent vs authenticate_session:
106241
106241
  credentials,
106242
106242
  authHints,
106243
106243
  model: ctx4.model,
106244
+ authConfig: ctx4.authConfig,
106244
106245
  abortSignal: ctx4.abortSignal,
106245
106246
  callbacks: ctx4.callbacks
106246
106247
  });
@@ -146701,6 +146702,7 @@ function ToolDetails({ message }) {
146701
146702
  function Pentest({ sessionId }) {
146702
146703
  const { colors: colors2 } = useTheme();
146703
146704
  const route = useRoute();
146705
+ const config4 = useConfig();
146704
146706
  const { model, setThinking, setIsExecuting, isExecuting } = useAgent();
146705
146707
  const { stack, externalDialogOpen } = useDialog();
146706
146708
  const [session, setSession] = import_react73.useState(null);
@@ -146971,6 +146973,12 @@ function Pentest({ sessionId }) {
146971
146973
  session: s,
146972
146974
  model: model.id,
146973
146975
  abortSignal: controller.signal,
146976
+ authConfig: {
146977
+ anthropicAPIKey: config4.data.anthropicAPIKey ?? undefined,
146978
+ openAiAPIKey: config4.data.openAiAPIKey ?? undefined,
146979
+ openRouterAPIKey: config4.data.openRouterAPIKey ?? undefined,
146980
+ local: config4.data.localModelUrl ? { baseURL: config4.data.localModelUrl } : undefined
146981
+ },
146974
146982
  callbacks: {
146975
146983
  onTextDelta: (d3) => {
146976
146984
  setThinking(false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pensar/apex",
3
- "version": "0.0.66",
3
+ "version": "0.0.67-canary.9f6703d0",
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",