Interesting benchmark. I can't help but notice that they're benchmarking Opus 4.6 (Anthropic's latest and greatest model) against GPT-5.2 (which is three generations behind OpenAI's latest coding models: GPT-5.2-Codex, GPT-5.3-Codex and the latest GPT-5.4).
SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
11–20 of 49 posts
Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#12Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#13Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#14Claude wins by a large margin * Claude Opus 4.6 : 0.71 * Claude Opus 4.5 : 0.51 * KIMI-K2.5 : 0.37 * GLM-5 : 0.36 * GPT-5.2 : 0.23 Note: later GPT versions seem to be only available within openAi's proprietary codex cli, so can't be tested - and if tested via the codex cli "harness" it wouldn't be a pure model-to-model comparison any more. --- Of course, the interesting follow-up question is: How well perform these m…
https://github.com/openai/codex
You can definitely access the latest models via the API. That's how Codex CLI works.
Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#15Interesting benchmark. I can't help but notice that they're benchmarking Opus 4.6 (Anthropic's latest and greatest model) against GPT-5.2 (which is three generations behind OpenAI's latest coding models: GPT-5.2-Codex, GPT-5.3-Codex and the latest GPT-5.4).
As far as I know, OpenAI did not release 5.3 Codex in their API. You can only use it with Codex CLI or app.
Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#16https://developers.openai.com/api/docs/models/gpt-5.3-codex
IMHO The harness must be used when running these experiments. The model vendors know best on giving the best harness with gpt 5.4 and codex or Claude code with opus 4.6 which makes a big difference if you are running any kind of agentic coding tasks.
I see both Claude and gpt to be neck and neck in coding. Every other model+harness is definitely 3-6 months behind. Right now codex seems to be the best in terms of solving complex bugs, long running tasks, much higher limits and even speed while Claude seems to do well in front end and their cli ux seems nice! Codex app is very good though (wish it wasn’t electron as a memory hog but it’s good)
Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#17Replace "Agent" with "Employee" and apply the same algorithm. Evaluate employee efficiency. Profit?
Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#18Unfortunately the paper doesn’t include gpt 5.3 which was released around the same time as opus 4.6 and also gpt 5.4 few days back. Both are available via api https://developers.openai.com/api/docs/models/gpt-5.3-codex IMHO The harness must be used when running these experiments. The model vendors know best on giving the best harness with gpt 5.4 and codex or Claude code with opus 4.6 which makes a big difference if…