add default medium reasoning case for gpt-5-codex-mini

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
jeffnash
2025-11-07 17:12:10 -08:00
committed by GitHub
parent 240e782606
commit ec354f7a1a

View File

@@ -82,6 +82,8 @@ func (e *CodexExecutor) Execute(ctx context.Context, auth *cliproxyauth.Auth, re
body, _ = sjson.SetBytes(body, "reasoning.effort", "medium")
case "gpt-5-codex-mini-high":
body, _ = sjson.SetBytes(body, "reasoning.effort", "high")
default:
body, _ = sjson.SetBytes(body, "reasoning.effort", "medium")
}
}