executant 1.16.0 → 1.17.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/index.js +5 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -268,6 +268,7 @@ function convertInnerStep(step, vars, name, continueOnError) {
|
|
|
268
268
|
continueOnError,
|
|
269
269
|
llmAsJudge: step.llm_as_judge,
|
|
270
270
|
allowedTools: step.allowed_tools,
|
|
271
|
+
model: "sonnet",
|
|
271
272
|
...contextFiles.length > 0 && { contextFiles }
|
|
272
273
|
};
|
|
273
274
|
}
|
|
@@ -788,7 +789,8 @@ async function* runCommandWithHealing(task) {
|
|
|
788
789
|
type: "claude",
|
|
789
790
|
name: `${task.name}:heal-${attempt + 1}`,
|
|
790
791
|
prompt: healPrompt,
|
|
791
|
-
allowedTools: ["Bash", "Read", "Write", "Edit", "Glob", "Grep"]
|
|
792
|
+
allowedTools: ["Bash", "Read", "Write", "Edit", "Glob", "Grep"],
|
|
793
|
+
model: "sonnet"
|
|
792
794
|
};
|
|
793
795
|
const toolCalls = [];
|
|
794
796
|
const claudeLines = [];
|
|
@@ -859,8 +861,9 @@ async function evaluateWithJudge(stepName, stepInstructions, output) {
|
|
|
859
861
|
name: `judge:${stepName}`,
|
|
860
862
|
prompt: buildJudgePrompt(stepName, stepInstructions, output),
|
|
861
863
|
allowedTools: [],
|
|
862
|
-
permissionMode: "default"
|
|
864
|
+
permissionMode: "default",
|
|
863
865
|
// judge only reads text — no tool access needed
|
|
866
|
+
model: "sonnet"
|
|
864
867
|
},
|
|
865
868
|
JudgeOutputSchema
|
|
866
869
|
);
|