1<?php 2 3namespace dokuwiki\plugin\aichat\test; 4 5/** 6 * Groq Model Test 7 * 8 * @group plugin_aichat 9 * @group plugins 10 * @group internet 11 */ 12class ModelGroqTest extends AbstractModelTest 13{ 14 protected string $provider = 'Groq'; 15 protected string $api_key_env = 'GROQ_API_KEY'; 16 protected string $chat_model = 'llama3-8b-8192'; 17 protected string $embedding_model = ''; 18 19 public function testEmbedding() 20 { 21 $this->markTestSkipped('Groq does not support embeddings yet'); 22 } 23 24 25} 26