xref: /plugin/aichat/conf/metadata.php (revision 13dbfc23174f3d6b4ae0540553675c666472eae2)
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');
11f6ef2e50SAndreas Gohr
12f6ef2e50SAndreas Gohr$meta['model'] = array('multichoice',
13f6ef2e50SAndreas Gohr    '_choices' => array(
14f6ef2e50SAndreas Gohr        'OpenAI\\GPT35Turbo',
15f6ef2e50SAndreas Gohr        'OpenAI\\GPT35Turbo16k',
160eeff420SAndreas Gohr        'OpenAI\\GPT4',
17f6ef2e50SAndreas Gohr    )
18f6ef2e50SAndreas Gohr);
19f6ef2e50SAndreas Gohr
20*13dbfc23SAndreas Gohr$meta['pinecone_apikey'] = array('string');
21*13dbfc23SAndreas Gohr$meta['pinecone_baseurl'] = array('string');
22*13dbfc23SAndreas Gohr
2382d5855eSAndreas Gohr$meta['logging'] = array('onoff');
24c4127b8eSAndreas Gohr$meta['restrict'] = array('string');
25