Skip to content

Commit bfb8179

Browse files
committed
Update general agent to gpt 5.4
1 parent a55494e commit bfb8179

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

agents/editor/best-of-n/best-of-n-selector2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const createBestOfNSelector2 = (options: {
1717
? 'anthropic/claude-sonnet-4.5'
1818
: isOpus
1919
? 'anthropic/claude-opus-4.6'
20-
: 'openai/gpt-5.2',
20+
: 'openai/gpt-5.4',
2121
...(isGpt5 && {
2222
reasoningOptions: {
2323
effort: 'high',

agents/general-agent/general-agent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const createGeneralAgent = (options: {
1212

1313
return {
1414
publisher,
15-
model: isGpt5 ? 'openai/gpt-5.2' : 'anthropic/claude-opus-4.6',
15+
model: isGpt5 ? 'openai/gpt-5.4' : 'anthropic/claude-opus-4.6',
1616
...(!isGpt5 && {
1717
providerOptions: {
1818
only: ['amazon-bedrock'],

0 commit comments

Comments
 (0)