1f8753427SAndreas Gohr (aider)<?php 2f8753427SAndreas Gohr (aider) 3f8753427SAndreas Gohr (aider)namespace dokuwiki\plugin\aichat\test; 4f8753427SAndreas Gohr (aider) 5f8753427SAndreas Gohr (aider)/** 6f8753427SAndreas Gohr (aider) * Ollama Model Test 7f8753427SAndreas Gohr (aider) * 8f8753427SAndreas Gohr (aider) * @group plugin_aichat 9f8753427SAndreas Gohr (aider) * @group plugins 10f8753427SAndreas Gohr (aider) * @group internet 11f8753427SAndreas Gohr (aider) */ 12f8753427SAndreas Gohr (aider)class ModelOllamaTest extends AbstractModelTest 13f8753427SAndreas Gohr (aider){ 14f8753427SAndreas Gohr (aider) protected string $provider = 'Ollama'; 15*d72a84c5SAndreas Gohr protected string $api_key_env = ''; 16f8753427SAndreas Gohr (aider) protected string $chat_model = 'llama3.2'; 17f8753427SAndreas Gohr (aider) protected string $embedding_model = 'nomic-embed-text'; 18f8753427SAndreas Gohr (aider)} 19