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