@@ -967,8 +967,8 @@ export namespace Provider {
967967 const config = yield * Config . Service
968968 const auth = yield * Auth . Service
969969
970- const cache = yield * InstanceState . make < State > (
971- ( ) => Effect . gen ( function * ( ) {
970+ const cache = yield * InstanceState . make < State > ( ( ) =>
971+ Effect . gen ( function * ( ) {
972972 using _ = log . time ( "state" )
973973 const cfg = yield * config . get ( )
974974 const modelsDev = yield * Effect . promise ( ( ) => ModelsDev . get ( ) )
@@ -1193,8 +1193,7 @@ export namespace Provider {
11931193 ( providerID === ProviderID . openrouter && modelID === "openai/gpt-5-chat" )
11941194 )
11951195 delete provider . models [ modelID ]
1196- if ( model . status === "alpha" && ! Flag . OPENCODE_ENABLE_EXPERIMENTAL_MODELS )
1197- delete provider . models [ modelID ]
1196+ if ( model . status === "alpha" && ! Flag . OPENCODE_ENABLE_EXPERIMENTAL_MODELS ) delete provider . models [ modelID ]
11981197 if ( model . status === "deprecated" ) delete provider . models [ modelID ]
11991198 if (
12001199 ( configProvider ?. blacklist && configProvider . blacklist . includes ( modelID ) ) ||
@@ -1321,8 +1320,7 @@ export namespace Provider {
13211320 if ( options [ "timeout" ] !== undefined && options [ "timeout" ] !== null && options [ "timeout" ] !== false )
13221321 signals . push ( AbortSignal . timeout ( options [ "timeout" ] ) )
13231322
1324- const combined =
1325- signals . length === 0 ? null : signals . length === 1 ? signals [ 0 ] : AbortSignal . any ( signals )
1323+ const combined = signals . length === 0 ? null : signals . length === 1 ? signals [ 0 ] : AbortSignal . any ( signals )
13261324 if ( combined ) opts . signal = combined
13271325
13281326 // Strip openai itemId metadata following what codex does
@@ -1543,7 +1541,10 @@ export namespace Provider {
15431541 } ) ,
15441542 )
15451543
1546- const { runPromise } = makeRuntime ( Service , layer . pipe ( Layer . provide ( Config . defaultLayer ) , Layer . provide ( Auth . defaultLayer ) ) )
1544+ const { runPromise } = makeRuntime (
1545+ Service ,
1546+ layer . pipe ( Layer . provide ( Config . defaultLayer ) , Layer . provide ( Auth . defaultLayer ) ) ,
1547+ )
15471548
15481549 export async function list ( ) {
15491550 return runPromise ( ( svc ) => svc . list ( ) )
0 commit comments