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