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