@canonmsg/core 1.0.0 → 1.1.0
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.
|
@@ -11,6 +11,12 @@ export declare const CLAUDE_EFFORT_OPTIONS: readonly [{
|
|
|
11
11
|
}, {
|
|
12
12
|
readonly value: "high";
|
|
13
13
|
readonly label: "High";
|
|
14
|
+
}, {
|
|
15
|
+
readonly value: "xhigh";
|
|
16
|
+
readonly label: "Extra high";
|
|
17
|
+
}, {
|
|
18
|
+
readonly value: "max";
|
|
19
|
+
readonly label: "Max";
|
|
14
20
|
}];
|
|
15
21
|
export declare const EXECUTION_MODE_CONTROL_OPTIONS: ReadonlyArray<{
|
|
16
22
|
value: ExecutionEnvironmentMode;
|
|
@@ -4,6 +4,8 @@ export const CLAUDE_EFFORT_OPTIONS = [
|
|
|
4
4
|
{ value: 'low', label: 'Low' },
|
|
5
5
|
{ value: 'medium', label: 'Medium' },
|
|
6
6
|
{ value: 'high', label: 'High' },
|
|
7
|
+
{ value: 'xhigh', label: 'Extra high' },
|
|
8
|
+
{ value: 'max', label: 'Max' },
|
|
7
9
|
];
|
|
8
10
|
export const EXECUTION_MODE_CONTROL_OPTIONS = [
|
|
9
11
|
{
|