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