DeepFal 在 一行命令快速检查你的codex 5.3是否被降级(降智) 中发帖
看有人说codex有把5.3-codex路由到5.2的现象,codex的github issue也有好多人反应这个问题,大家可以看看自己有没有中招
1. 单次快速检测
Linux / macOS:
Bash
RUST_LOG='codex_api::sse::responses=trace' codex exec --skip-git-repo-check -m gpt-5.3-codex "PING" 2>&1 | grep -oP '"model":"\K[^"]+' | head -n 1
Windows (PowerShell):
PowerShell
$env:RUST_LOG='codex_api::sse::responses=trace'; (codex exec --skip-git-repo-check -m gpt-5.3-codex "PING" 2>&1...