1<?php 2 3namespace dokuwiki\plugin\aichat\test; 4 5/** 6 * VoyageAI Model Test 7 * 8 * @group plugin_aichat 9 * @group plugins 10 * @group internet 11 */ 12class ModelVoyageAITest extends AbstractModelTest 13{ 14 protected string $provider = 'VoyageAI'; 15 protected string $api_key_env = 'VOYAGEAI_API_KEY'; 16 protected string $chat_model = ''; 17 protected string $embedding_model = 'voyage-3'; 18 19 /** @inheritdoc */ 20 public function testChat() 21 { 22 $this->markTestSkipped('VoyageAI does not support chat models'); 23 } 24} 25