OpenAI 发布 GPT-5.5,Codex 性能更强
GPT-5.5 在匹配 GPT-5.4 延迟的同时大幅提升智能,使用更少 token 完成任务。搭载最强安全措施。
Version of GPT-5 optimized for agentic coding in Codex.
GPT-5-Codex 是 GPT-5 的专用变体,针对 OpenAI Codex 环境中的 agent 编程进行了深度优化。2025 年 9 月发布,它训练于复杂的真实工程任务:从零构建完整项目、添加功能和测试、调试、跨数百个文件执行大规模重构。在 TheRouter 上,openai/gpt-5-codex 定价与 GPT-5 相同($1.25/$10 per 1M tokens),400K 上下文,支持 GPT-5 的全部参数。
与通用型 GPT-5 不同,GPT-5-Codex 根据任务复杂度动态调整推理时间——简单请求比 GPT-5 少生成 93.7% 的 token,难题上花费两倍时间。已在复杂任务上独立运行超过 7 小时。OpenAI 建议仅在 Codex 或类似环境中用于 agent 编程。
| 类型 | 费率 |
|---|---|
| 输入 | $1.35 每百万 Tokens |
| 输出 | $10.80 每百万 Tokens |
| 发布日期 | 2025-09-23openai.com ↗ | 已核实 |
| 训练数据截止 | 未公开披露 | 未知 |
| OpenAI 模型 ID | gpt-5-codexplatform.openai.com ↗ | 已核实 |
| API 可用性 | 仅原生 Responses APIopenai.com ↗ | 已核实 |
| 动态推理 | 简单场景比 GPT-5 少 93.7% token;困难任务 2 倍推理openai.com ↗ | 已核实 |
| 自主执行时长 | 复杂任务上超过 7 小时openai.com ↗ | 已核实 |
| 许可 | OpenAI Terms of Use(闭源,仅 API) | 已核实 |
| Benchmark | Distribution | Score | Source |
|---|---|---|---|
SWE-bench Verified 全部 500 个任务。高计算配置(并行尝试+内部评分)可达 82.0%。 | 77.2%% | openai.com ↗ | |
Code Refactoring 基于大型仓库的重构任务评估(Python、Go、OCaml)。示例:修改 232 个文件和 3,541 行的 Gitea PR。 | OpenAI internal eval | openai.com ↗ | |
Code Review Accuracy 经验丰富的工程师评估,错误或不重要评论比 GPT-5 更少。 | Highly preferred vs GPT-5 | openai.com ↗ |
所有新集成都应使用下方示例中的全球端点 api.therouter.ai;旧中国加速端点已下线。
curl https://api.therouter.ai/v1/chat/completions -H "Content-Type: application/json" -H "Authorization: Bearer $THE_ROUTER_API_KEY" -d '{
"model": "openai/gpt-5-codex",
"messages": [
{"role": "user", "content": "Summarize the key points from this input."}
]
}'通过 TheRouter 使用标准 chat completions endpoint 调用。TheRouter 将原生 Responses API 抽象为熟悉的 chat completions 接口。
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-5-codex",
"messages": [
{"role": "user", "content": "Write a Python script to parse logs and extract error counts for each module."}
],
"reasoning_effort": "medium"
}'GPT-5.5 在匹配 GPT-5.4 延迟的同时大幅提升智能,使用更少 token 完成任务。搭载最强安全措施。
GPT-5.3-Codex 在 SWE-Bench Pro 和 Terminal-Bench 上创新高。
GPT-5.2-Codex 在 SWE-Bench Pro 和 Terminal-Bench 2.0 上实现 SOTA。
GPT-5-Codex 是 GPT-5 的专业版,专为 OpenAI Codex 中的 agent 编程打造。动态调整推理时间——简单请求更少 token,困难任务更多推理。建议仅在 Codex 类环境中使用。
可以。在 api.therouter.ai/v1/chat/completions 上将 model 设为 'openai/gpt-5-codex',使用标准 OpenAI SDK。
定价相同:$1.25/$10 per 1M tokens。实际成本可能更低,因为简单请求使用的 token 显著减少。
不。OpenAI 明确建议仅用于 Codex 类环境中的 agent 编程。通用推理请用 openai/gpt-5。
| 来源 | URL | 采集于 | |
|---|---|---|---|
| 发布日期 | openai.com ↗ | 2026-05-28 | 已核实 |
| 训练数据截止 | — | — | 未知 |
| OpenAI 模型 ID | platform.openai.com ↗ | 2026-05-28 | 已核实 |
| API 可用性 | openai.com ↗ | 2026-05-28 | 已核实 |
| 动态推理 | openai.com ↗ | 2026-05-28 | 已核实 |
| 自主执行时长 | openai.com ↗ | 2026-05-28 | 已核实 |
| 许可 | — | — | 已核实 |
| SWE-bench Verified | openai.com ↗ | 2026-05-28 | 已核实 |
| Code Refactoring | openai.com ↗ | 2026-05-28 | 已核实 |
| Code Review Accuracy | openai.com ↗ | 2026-05-28 | 已核实 |
| OpenAI 发布 GPT-5.5,Codex 性能更强 | openai.com ↗ | 2026-05-28 | 已核实 |
| OpenAI 发布 GPT-5.3-Codex 系统卡 | openai.com ↗ | 2026-05-28 | 已核实 |
| OpenAI 发布 GPT-5.2-Codex,agent 编程 SOTA | openai.com ↗ | 2026-05-28 | 已核实 |
| OpenAI 发布 GPT-5-Codex | openai.com ↗ | 2026-05-28 | 已核实 |
| GPT-5 和 GPT-5-Codex 有什么区别? | openai.com ↗ | 2026-05-28 | 待核实 |
| 我可以通过 TheRouter 的 API 使用 GPT-5-Codex 吗? | openai.com ↗ | 2026-05-28 | 待核实 |
| GPT-5-Codex 的定价与 GPT-5 相比如何? | openai.com ↗ | 2026-05-28 | 待核实 |
| GPT-5-Codex 在非编程任务上表现出色吗? | openai.com ↗ | 2026-05-28 | 待核实 |