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