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