File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -523,13 +523,16 @@ describe('Model Capabilities', () => {
523523
524524 it . concurrent ( 'should have GPT-5 models in both reasoning effort and verbosity arrays' , ( ) => {
525525 const gpt5ModelsWithReasoningEffort = MODELS_WITH_REASONING_EFFORT . filter (
526- ( m ) => m . includes ( 'gpt-5' ) && ! m . includes ( 'chat-latest' )
526+ ( m ) => m . includes ( 'gpt-5' ) && ! m . includes ( 'chat-latest' ) && ! m . includes ( 'gpt-5.4-pro' )
527527 )
528528 const gpt5ModelsWithVerbosity = MODELS_WITH_VERBOSITY . filter (
529529 ( m ) => m . includes ( 'gpt-5' ) && ! m . includes ( 'chat-latest' )
530530 )
531531 expect ( gpt5ModelsWithReasoningEffort . sort ( ) ) . toEqual ( gpt5ModelsWithVerbosity . sort ( ) )
532532
533+ expect ( MODELS_WITH_REASONING_EFFORT ) . toContain ( 'gpt-5.4-pro' )
534+ expect ( MODELS_WITH_VERBOSITY ) . not . toContain ( 'gpt-5.4-pro' )
535+
533536 expect ( MODELS_WITH_REASONING_EFFORT ) . toContain ( 'o1' )
534537 expect ( MODELS_WITH_VERBOSITY ) . not . toContain ( 'o1' )
535538 } )
You can’t perform that action at this time.
0 commit comments