@checksum-ai/runtime 4.1.1-beta.10 → 4.1.1-beta.11
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/.env +1 -1
- package/checksum-progress-reporter.js +1 -1
- package/cli.js +3 -3
- package/index.d.ts +6 -3
- package/index.js +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -209,10 +209,12 @@ export type RuntimeOptions = {
|
|
|
209
209
|
arMode?: AutoRecoveryMode;
|
|
210
210
|
arVersion?: 1|2;
|
|
211
211
|
/**
|
|
212
|
-
*
|
|
213
|
-
*
|
|
212
|
+
* When true (the default), auto-recovery applies the corrective action
|
|
213
|
+
* and marks the failing step as recovered. Set to false for suggest-only:
|
|
214
|
+
* the agent returns the proposed fix without mutating the browser.
|
|
215
|
+
* Applies to all arModes.
|
|
214
216
|
*/
|
|
215
|
-
|
|
217
|
+
markRecovered?: boolean;
|
|
216
218
|
/**
|
|
217
219
|
* Override the auto-recovery model for the selected arMode. Useful to
|
|
218
220
|
* make OneShot accuracy-first, e.g. modelName: "claude_opus_4_8".
|
|
@@ -229,6 +231,7 @@ export type RuntimeOptions = {
|
|
|
229
231
|
| "gemini_2.5_flash"
|
|
230
232
|
| "gemini_2.5_flash_lite"
|
|
231
233
|
| "gemini_3.5_flash"
|
|
234
|
+
| "gemini_3.1_flash_lite"
|
|
232
235
|
| "gpt_4o_mini"
|
|
233
236
|
| "gpt_4o_nano"
|
|
234
237
|
| "gpt_41_nano"
|