xref: /plugin/aichat/conf/metadata.php (revision f6ef2e505783ac17f756e44bf15c66238362377a)
18817535bSAndreas Gohr<?php
28817535bSAndreas Gohr/**
38817535bSAndreas Gohr * Options for the aichat plugin
48817535bSAndreas Gohr *
58817535bSAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de>
68817535bSAndreas Gohr */
78817535bSAndreas Gohr
88817535bSAndreas Gohr
98817535bSAndreas Gohr$meta['openaikey'] = array('string');
108817535bSAndreas Gohr$meta['openaiorg'] = array('string');
11*f6ef2e50SAndreas Gohr
12*f6ef2e50SAndreas Gohr$meta['model'] = array('multichoice',
13*f6ef2e50SAndreas Gohr    '_choices' => array(
14*f6ef2e50SAndreas Gohr        'OpenAI\\GPT35Turbo',
15*f6ef2e50SAndreas Gohr        'OpenAI\\GPT35Turbo16k',
16*f6ef2e50SAndreas Gohr    )
17*f6ef2e50SAndreas Gohr);
18*f6ef2e50SAndreas Gohr
1982d5855eSAndreas Gohr$meta['logging'] = array('onoff');
20c4127b8eSAndreas Gohr$meta['restrict'] = array('string');
21