1<?php 2/** 3 * Options for the aichat plugin 4 * 5 * @author Andreas Gohr <gohr@cosmocode.de> 6 */ 7 8 9$meta['openaikey'] = array('string'); 10$meta['openaiorg'] = array('string'); 11 12$meta['model'] = array('multichoice', 13 '_choices' => array( 14 'OpenAI\\GPT35Turbo', 15 'OpenAI\\GPT35Turbo16k', 16 'OpenAI\\GPT4', 17 ) 18); 19 20$meta['pinecone_apikey'] = array('string'); 21$meta['pinecone_baseurl'] = array('string'); 22 23$meta['logging'] = array('onoff'); 24$meta['restrict'] = array('string'); 25$meta['preferUIlanguage'] = array('multichoice', '_choices' => array( 26 \dokuwiki\plugin\aichat\AIChat::LANG_AUTO_ALL, 27 \dokuwiki\plugin\aichat\AIChat::LANG_UI_ALL, 28 \dokuwiki\plugin\aichat\AIChat::LANG_UI_LIMITED, 29)); 30