xref: /plugin/aichat/_test/ModelGroqTest.php (revision ac84f472b03ad860a0880f0cb3e86b0a20969598)
1c4c2ecf7SAndreas Gohr (aider)<?php
2c4c2ecf7SAndreas Gohr (aider)
3c4c2ecf7SAndreas Gohr (aider)namespace dokuwiki\plugin\aichat\test;
4c4c2ecf7SAndreas Gohr (aider)
5c4c2ecf7SAndreas Gohr (aider)/**
6c4c2ecf7SAndreas Gohr (aider) * Groq Model Test
7c4c2ecf7SAndreas Gohr (aider) *
8c4c2ecf7SAndreas Gohr (aider) * @group plugin_aichat
9c4c2ecf7SAndreas Gohr (aider) * @group plugins
10c4c2ecf7SAndreas Gohr (aider) * @group internet
11c4c2ecf7SAndreas Gohr (aider) */
12c4c2ecf7SAndreas Gohr (aider)class ModelGroqTest extends AbstractModelTest
13c4c2ecf7SAndreas Gohr (aider){
14c4c2ecf7SAndreas Gohr (aider)    protected string $provider = 'Groq';
15c4c2ecf7SAndreas Gohr (aider)    protected string $api_key_env = 'GROQ_API_KEY';
16c4c2ecf7SAndreas Gohr (aider)    protected string $chat_model = 'llama3-8b-8192';
17*ac84f472SAndreas Gohr    protected string $embedding_model = '';
18*ac84f472SAndreas Gohr
19*ac84f472SAndreas Gohr    public function testEmbedding()
20*ac84f472SAndreas Gohr    {
21*ac84f472SAndreas Gohr        $this->markTestSkipped('Groq does not support embeddings yet');
22*ac84f472SAndreas Gohr    }
23*ac84f472SAndreas Gohr
24*ac84f472SAndreas Gohr
25c4c2ecf7SAndreas Gohr (aider)}
26