@delegance/claude-autopilot 1.3.0 → 1.3.1
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/package.json
CHANGED
|
@@ -4,12 +4,12 @@ import { AutopilotError } from '../../core/errors.ts';
|
|
|
4
4
|
import type { Capabilities } from '../base.ts';
|
|
5
5
|
import type { ReviewEngine, ReviewInput, ReviewOutput } from './types.ts';
|
|
6
6
|
|
|
7
|
-
const DEFAULT_MODEL = 'claude-
|
|
7
|
+
const DEFAULT_MODEL = 'claude-opus-4-7';
|
|
8
8
|
const MAX_OUTPUT_TOKENS = 4096;
|
|
9
9
|
|
|
10
|
-
// Cost per million tokens (USD) —
|
|
11
|
-
const COST_PER_M_INPUT =
|
|
12
|
-
const COST_PER_M_OUTPUT =
|
|
10
|
+
// Cost per million tokens (USD) — opus-4-7 pricing
|
|
11
|
+
const COST_PER_M_INPUT = 15.0;
|
|
12
|
+
const COST_PER_M_OUTPUT = 75.0;
|
|
13
13
|
|
|
14
14
|
const SYSTEM_PROMPT_TEMPLATE = `You are a senior software architect reviewing code changes for quality, security, and correctness.
|
|
15
15
|
|