imcodes 2026.4.1804-dev.1784 → 2026.4.1806-dev.1787
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.
|
@@ -24,7 +24,7 @@ export declare const SUPERVISION_DEFAULT_MAX_PARSE_RETRIES = 1;
|
|
|
24
24
|
export declare const SUPERVISION_DEFAULT_AUDIT_MODE: SupervisionAuditMode;
|
|
25
25
|
export declare const SUPERVISION_DEFAULT_MAX_AUDIT_LOOPS = 2;
|
|
26
26
|
export declare const SUPERVISION_DEFAULT_MAX_AUTO_CONTINUE_STREAK = 2;
|
|
27
|
-
export declare const SUPERVISION_DEFAULT_MAX_AUTO_CONTINUE_TOTAL =
|
|
27
|
+
export declare const SUPERVISION_DEFAULT_MAX_AUTO_CONTINUE_TOTAL = 0;
|
|
28
28
|
export declare const SUPERVISION_DEFAULT_PROMPT_VERSION: "supervision_decision_v1";
|
|
29
29
|
export declare const SUPERVISION_DEFAULT_TASK_RUN_PROMPT_VERSION: "task_run_status_v1";
|
|
30
30
|
export declare const SUPERVISION_UNAVAILABLE_REASONS: {
|
|
@@ -158,7 +158,7 @@ export declare const DEFAULT_SUPERVISION_AUDIT_MODE: "audit";
|
|
|
158
158
|
export declare const DEFAULT_SUPERVISION_MAX_AUDIT_LOOPS = 2;
|
|
159
159
|
export declare const DEFAULT_SUPERVISION_MAX_PARSE_RETRIES = 1;
|
|
160
160
|
export declare const DEFAULT_SUPERVISION_MAX_AUTO_CONTINUE_STREAK = 2;
|
|
161
|
-
export declare const DEFAULT_SUPERVISION_MAX_AUTO_CONTINUE_TOTAL =
|
|
161
|
+
export declare const DEFAULT_SUPERVISION_MAX_AUTO_CONTINUE_TOTAL = 0;
|
|
162
162
|
export declare function parseTaskRunTerminalStateDetailsFromText(text: string): ParsedTaskRunTerminalState;
|
|
163
163
|
export declare function parseTaskRunTerminalStateFromText(text: string): TaskRunTerminalState | null;
|
|
164
164
|
export declare function parseAuditVerdictDetailsFromText(text: string): ParsedAuditVerdict;
|
|
@@ -41,7 +41,7 @@ export const SUPERVISION_DEFAULT_MAX_PARSE_RETRIES = 1;
|
|
|
41
41
|
export const SUPERVISION_DEFAULT_AUDIT_MODE = 'audit';
|
|
42
42
|
export const SUPERVISION_DEFAULT_MAX_AUDIT_LOOPS = 2;
|
|
43
43
|
export const SUPERVISION_DEFAULT_MAX_AUTO_CONTINUE_STREAK = 2;
|
|
44
|
-
export const SUPERVISION_DEFAULT_MAX_AUTO_CONTINUE_TOTAL =
|
|
44
|
+
export const SUPERVISION_DEFAULT_MAX_AUTO_CONTINUE_TOTAL = 0;
|
|
45
45
|
export const SUPERVISION_DEFAULT_PROMPT_VERSION = SUPERVISION_CONTRACT_IDS.DECISION;
|
|
46
46
|
export const SUPERVISION_DEFAULT_TASK_RUN_PROMPT_VERSION = SUPERVISION_CONTRACT_IDS.TASK_RUN_STATUS;
|
|
47
47
|
// Reasons surfaced when the supervision layer cannot produce a structured model
|
package/package.json
CHANGED