SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
41–49 of 49 posts
Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#42[flagged]
Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#43[flagged]
Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#44Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#45Unfortunately 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…
> model vendors know best on giving the best harness This was only true for Claude Code for a while. Codex was poor and Gemini was unusable. Since then Codex has gotten quite good.
Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#46We see this firsthand at Prismor with auto generated security fixes. Even with the best LLMs, validating fixes is the real bottleneck our pipeline struggles to exceed 70% on an internal golden dataset (which itself is somewhat biased).
Many patches technically fix the vulnerability but introduce semantic regressions or architectural drift. Passing tests is a weak signal and proving a fix is truly safe to merge is much harder
Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#47Earlier quoted context omitted.
It's the other way around - Claude Code is the proprietary one. Codex CLI is open source: https://github.com/openai/codex You can definitely access the latest models via the API. That's how Codex CLI works.
gpt-5.3 was not accessible via API, at least for me But it was in codex
5.3-codex is only available via the Responses API, not the Completions API. Two different APIs for model access. If you were using Completions you have to port to Responses. It's not that hard. I did this for my own agent the other week. I think it might be like that for all their new models from now on. Responses is a much more powerful API. It's more like a front to ChatGPT than the underlying models.
Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#48Earlier quoted context omitted.
gpt-5.3 was not accessible via API, at least for me But it was in codex
Ah ha, I know what you're hitting. 5.3-codex is only available via the Responses API, not the Completions API. Two different APIs for model access. If you were using Completions you have to port to Responses. It's not that hard. I did this for my own agent the other week. I think it might be like that for all their new models from now on. Responses is a much more powerful API. It's more like a front to ChatGPT than t…
I'll try again, maybe I was doing something else wrong, or something changed
Re: SWE-CI: Evaluating Agent Capabilities in Maintaining Codebases via CI
#49Earlier quoted context omitted.
Ah ha, I know what you're hitting. 5.3-codex is only available via the Responses API, not the Completions API. Two different APIs for model access. If you were using Completions you have to port to Responses. It's not that hard. I did this for my own agent the other week. I think it might be like that for all their new models from now on. Responses is a much more powerful API. It's more like a front to ChatGPT than t…
I am using responses API (these days I only use responses API when talking to OpenAI) I'll try again, maybe I was doing something else wrong, or something changed