xref: /plugin/aichat/_test/ModelOllamaTest.php (revision f8753427178c9d93704b275299d20afa9201119e)
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 = 'OLLAMA_API_KEY';
16    protected string $chat_model = 'llama3.2';
17    protected string $embedding_model = 'nomic-embed-text';
18}
19