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