Фикс: reasoning effort через -c model_reasoning_effort (флага --reasoning-effort нет в codex 0.149)
This commit is contained in:
@@ -234,7 +234,10 @@ function runCodexEdit(jobDir, inputName, prompt) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (process.env.CODEX_REASONING_EFFORT) {
|
if (process.env.CODEX_REASONING_EFFORT) {
|
||||||
args.push("--reasoning-effort", process.env.CODEX_REASONING_EFFORT);
|
args.push(
|
||||||
|
"-c",
|
||||||
|
`model_reasoning_effort=${process.env.CODEX_REASONING_EFFORT}`
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
args.push("-i", inputName, "-o", "last_message.txt", "-");
|
args.push("-i", inputName, "-o", "last_message.txt", "-");
|
||||||
|
|||||||
Reference in New Issue
Block a user