use codex-mini-latest for mini effort level

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Colin McDonnell
2026-02-14 03:38:04 +00:00
committed by pullfrog[bot]
parent 593a956665
commit 375e8e4455
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ const FALLBACK_MODEL = "gpt-5.2-codex";
function getCodexEffortConfig(model: string): Record<Effort, CodexEffortConfig> {
return {
mini: { model: "gpt-5.1-codex", reasoningEffort: "low" },
mini: { model: "codex-mini-latest", reasoningEffort: "low" },
auto: { model },
max: { model, reasoningEffort: "high" },
};
+1 -1
View File
@@ -145038,7 +145038,7 @@ var PREFERRED_MODEL = "gpt-5.3-codex";
var FALLBACK_MODEL = "gpt-5.2-codex";
function getCodexEffortConfig(model) {
return {
mini: { model: "gpt-5.1-codex", reasoningEffort: "low" },
mini: { model: "codex-mini-latest", reasoningEffort: "low" },
auto: { model },
max: { model, reasoningEffort: "high" }
};