assertSame( '', $blocked ); } public function test_filter_models_removes_excluded_entries() { $models = [ 'llama3-70b-8192', 'whisper-large-v3', 'mixtral-8x7b-32768' ]; $filtered = Groq_AI_Model_Exclusions::filter_models( 'groq', $models ); $this->assertSame( [ 'llama3-70b-8192', 'mixtral-8x7b-32768' ], $filtered ); } }