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