1*c97169eaSAndreas Gohr (aider)<?php 2*c97169eaSAndreas Gohr (aider) 3*c97169eaSAndreas Gohr (aider)namespace dokuwiki\plugin\aichat\test; 4*c97169eaSAndreas Gohr (aider) 5*c97169eaSAndreas Gohr (aider)/** 6*c97169eaSAndreas Gohr (aider) * Mistral Model Test 7*c97169eaSAndreas Gohr (aider) * 8*c97169eaSAndreas Gohr (aider) * @group plugin_aichat 9*c97169eaSAndreas Gohr (aider) * @group plugins 10*c97169eaSAndreas Gohr (aider) * @group internet 11*c97169eaSAndreas Gohr (aider) */ 12*c97169eaSAndreas Gohr (aider)class ModelMistralTest extends AbstractModelTest 13*c97169eaSAndreas Gohr (aider){ 14*c97169eaSAndreas Gohr (aider) protected string $provider = 'Mistral'; 15*c97169eaSAndreas Gohr (aider) protected string $api_key_env = 'MISTRAL_API_KEY'; 16*c97169eaSAndreas Gohr (aider) protected string $chat_model = 'mistral-small-latest'; 17*c97169eaSAndreas Gohr (aider) protected string $embedding_model = 'mistral-embed'; 18*c97169eaSAndreas Gohr (aider)} 19