1*773012cfSAndreas Gohr<?php 2*773012cfSAndreas Gohr 3*773012cfSAndreas Gohrnamespace dokuwiki\plugin\aichat\test; 4*773012cfSAndreas Gohr 5*773012cfSAndreas Gohr/** 6*773012cfSAndreas Gohr * OpenAI Model Test 7*773012cfSAndreas Gohr * 8*773012cfSAndreas Gohr * @group plugin_aichat 9*773012cfSAndreas Gohr * @group plugins 10*773012cfSAndreas Gohr * @group internet 11*773012cfSAndreas Gohr */ 12*773012cfSAndreas Gohrclass ModelOpenAITest extends AbstractModelTest 13*773012cfSAndreas Gohr{ 14*773012cfSAndreas Gohr protected string $provider = 'OpenAI'; 15*773012cfSAndreas Gohr protected string $api_key_env = 'OPENAI_API_KEY'; 16*773012cfSAndreas Gohr protected string $chat_model = 'gpt-3.5-turbo'; 17*773012cfSAndreas Gohr protected string $embedding_model = 'text-embedding-3-small'; 18*773012cfSAndreas Gohr} 19