@@ -82,7 +82,7 @@ describe("syncGithubAuthKeys", () => {
8282 expect ( next ) . toBe ( target )
8383 } )
8484
85- it . effect ( "creates codex config with gpt-5.4 and long-context overrides" , ( ) =>
85+ it . effect ( "creates codex config with gpt-5.5 and long-context overrides" , ( ) =>
8686 withTempDir ( ( root ) =>
8787 Effect . gen ( function * ( _ ) {
8888 const fs = yield * _ ( FileSystem . FileSystem )
@@ -93,7 +93,7 @@ describe("syncGithubAuthKeys", () => {
9393 yield * _ ( ensureCodexConfigFile ( root , ".orch/auth/codex" ) )
9494
9595 const configText = yield * _ ( fs . readFileString ( configPath ) )
96- expect ( configText ) . toContain ( "model = \"gpt-5.4 \"" )
96+ expect ( configText ) . toContain ( "model = \"gpt-5.5 \"" )
9797 expect ( configText ) . toContain ( "model_context_window = 1050000" )
9898 expect ( configText ) . toContain ( "model_auto_compact_token_limit = 945000" )
9999 expect ( configText ) . toContain ( "model_reasoning_effort = \"xhigh\"" )
@@ -276,7 +276,7 @@ describe("syncGithubAuthKeys", () => {
276276 } )
277277 ) . pipe ( Effect . provide ( NodeContext . layer ) ) )
278278
279- it . effect ( "rewrites managed codex config to include gpt-5.4 and plan mode xhigh" , ( ) =>
279+ it . effect ( "rewrites managed codex config to include gpt-5.5 and plan mode xhigh" , ( ) =>
280280 withTempDir ( ( root ) =>
281281 Effect . gen ( function * ( _ ) {
282282 const fs = yield * _ ( FileSystem . FileSystem )
@@ -306,7 +306,7 @@ describe("syncGithubAuthKeys", () => {
306306 yield * _ ( ensureCodexConfigFile ( root , ".orch/auth/codex" ) )
307307
308308 const next = yield * _ ( fs . readFileString ( configPath ) )
309- expect ( next ) . toContain ( "model = \"gpt-5.4 \"" )
309+ expect ( next ) . toContain ( "model = \"gpt-5.5 \"" )
310310 expect ( next ) . toContain ( "model_context_window = 1050000" )
311311 expect ( next ) . toContain ( "model_auto_compact_token_limit = 945000" )
312312 expect ( next ) . toContain ( "model_reasoning_effort = \"xhigh\"" )
0 commit comments