We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb8ab8e commit b629467Copy full SHA for b629467
evals/buffbench/runners/codex.ts
@@ -25,7 +25,7 @@ export class CodexRunner implements Runner {
25
'--full-auto',
26
'--json',
27
'-m',
28
- 'gpt-5.1-codex-max:xhigh',
+ 'gpt-5.1-codex',
29
prompt,
30
]
31
@@ -36,6 +36,7 @@ export class CodexRunner implements Runner {
36
env: {
37
...process.env,
38
...this.env,
39
+ CODEX_API_KEY: process.env.OPENAI_API_KEY || this.env.OPENAI_API_KEY,
40
},
41
// Use 'ignore' for stdin to prevent the CLI from waiting for input
42
stdio: ['ignore', 'pipe', 'pipe'],
0 commit comments