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