xref: /plugin/aichat/_test/ModelMistralTest.php (revision c97169ea9aaf2753157c34cc55e21181033dc599)
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 = 'mistral-embed';
18}
19