1<?php 2 3namespace dokuwiki\plugin\aichat\test; 4 5/** 6 * Gemini Model Test 7 * 8 * @group plugin_aichat 9 * @group plugins 10 * @group internet 11 */ 12class ModelGeminiTest extends AbstractModelTest 13{ 14 protected string $provider = 'Gemini'; 15 protected string $api_key_env = 'GEMINI_API_KEY'; 16 protected string $chat_model = 'gemini-1.5-flash'; 17 protected string $embedding_model = 'text-embedding-004'; 18} 19