baro-ai 0.37.1 → 0.38.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.
package/dist/cli.mjs CHANGED
@@ -11933,7 +11933,7 @@ var SurgeonOpenAI = class extends BaroParticipant {
11933
11933
  super();
11934
11934
  this.opts = {
11935
11935
  maxReplans: opts.maxReplans ?? 10,
11936
- model: opts.model ?? "gpt-5.4",
11936
+ model: opts.model ?? "gpt-5.5",
11937
11937
  snapshot: opts.snapshot
11938
11938
  };
11939
11939
  this.model = pickModel3(this.opts.model);
@@ -12074,7 +12074,7 @@ async function orchestrate(config) {
12074
12074
  };
12075
12075
  surgeon = llm === "openai" ? new SurgeonOpenAI({
12076
12076
  snapshot,
12077
- model: config.surgeonModel ?? "gpt-5.4"
12077
+ model: config.surgeonModel ?? "gpt-5.5"
12078
12078
  }) : new Surgeon({
12079
12079
  snapshot,
12080
12080
  useLlm: config.surgeonUseLlm ?? false,