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