From 449fbc261e845837e06f7a014ccce406d79ad779 Mon Sep 17 00:00:00 2001 From: David Chen Date: Mon, 22 Sep 2025 10:05:18 -0700 Subject: [PATCH] use gpt-5-high for codex --- zsh/functions/co.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/functions/co.zsh b/zsh/functions/co.zsh index 2749143..ce613ba 100644 --- a/zsh/functions/co.zsh +++ b/zsh/functions/co.zsh @@ -1,6 +1,6 @@ co() { local -a codex_cmd - codex_cmd=(codex --sandbox danger-full-access -m gpt-5-codex -c 'model_reasoning_summary_format=experimental' -c 'model_reasoning_effort=medium' --search) + codex_cmd=(codex --sandbox danger-full-access -m gpt-5 -c 'model_reasoning_summary_format=experimental' -c 'model_reasoning_effort=high' --search) local search_dir=$PWD local overlay_file="" while :; do