baro-ai 0.70.4 → 0.70.5
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/dist/cli.mjs +5 -5
- package/dist/cli.mjs.map +1 -1
- package/dist/runner.mjs +1 -1
- package/dist/runner.mjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -47792,7 +47792,7 @@ var Surgeon = class extends BaseObserver {
|
|
|
47792
47792
|
this.opts = {
|
|
47793
47793
|
useLlm: opts.useLlm ?? true,
|
|
47794
47794
|
model: opts.model ?? "opus",
|
|
47795
|
-
maxReplans: opts.maxReplans ??
|
|
47795
|
+
maxReplans: opts.maxReplans ?? Infinity,
|
|
47796
47796
|
claudeBin: opts.claudeBin ?? "claude",
|
|
47797
47797
|
timeoutMs: opts.timeoutMs ?? 9e4,
|
|
47798
47798
|
snapshot: opts.snapshot,
|
|
@@ -47953,7 +47953,7 @@ var SurgeonCodex = class extends BaseObserver {
|
|
|
47953
47953
|
this.opts = {
|
|
47954
47954
|
useLlm: opts.useLlm ?? true,
|
|
47955
47955
|
model: opts.model,
|
|
47956
|
-
maxReplans: opts.maxReplans ??
|
|
47956
|
+
maxReplans: opts.maxReplans ?? Infinity,
|
|
47957
47957
|
codexBin: opts.codexBin ?? "codex",
|
|
47958
47958
|
timeoutMs: opts.timeoutMs ?? 3e5,
|
|
47959
47959
|
snapshot: opts.snapshot,
|
|
@@ -48051,7 +48051,7 @@ var SurgeonOpenAI = class extends BaseObserver {
|
|
|
48051
48051
|
constructor(opts) {
|
|
48052
48052
|
super();
|
|
48053
48053
|
this.opts = {
|
|
48054
|
-
maxReplans: opts.maxReplans ??
|
|
48054
|
+
maxReplans: opts.maxReplans ?? Infinity,
|
|
48055
48055
|
model: opts.model ?? "gpt-5.5",
|
|
48056
48056
|
snapshot: opts.snapshot,
|
|
48057
48057
|
resolveRoute: opts.resolveRoute
|
|
@@ -48140,7 +48140,7 @@ var SurgeonOpenCode = class extends BaseObserver {
|
|
|
48140
48140
|
this.opts = {
|
|
48141
48141
|
useLlm: opts.useLlm ?? true,
|
|
48142
48142
|
model: opts.model,
|
|
48143
|
-
maxReplans: opts.maxReplans ??
|
|
48143
|
+
maxReplans: opts.maxReplans ?? Infinity,
|
|
48144
48144
|
opencodeBin: opts.opencodeBin ?? "opencode",
|
|
48145
48145
|
timeoutMs: opts.timeoutMs ?? 3e5,
|
|
48146
48146
|
snapshot: opts.snapshot,
|
|
@@ -48220,7 +48220,7 @@ var SurgeonPi = class extends BaseObserver {
|
|
|
48220
48220
|
useLlm: opts.useLlm ?? true,
|
|
48221
48221
|
provider: opts.provider,
|
|
48222
48222
|
model: opts.model,
|
|
48223
|
-
maxReplans: opts.maxReplans ??
|
|
48223
|
+
maxReplans: opts.maxReplans ?? Infinity,
|
|
48224
48224
|
piBin: opts.piBin ?? "pi",
|
|
48225
48225
|
timeoutMs: opts.timeoutMs ?? 3e5,
|
|
48226
48226
|
snapshot: opts.snapshot,
|