xref: /plugin/aichat/conf/default.php (revision 34a1c47875552330ce367360d99f2c3f9f69af94)
1<?php
2
3/**
4 * Default settings for the aichat plugin
5 *
6 * @author Andreas Gohr <gohr@cosmocode.de>
7 */
8
9$conf['openaikey']    = '';
10$conf['openaiorg']    = '';
11$conf['model'] = 'OpenAI\\GPT35Turbo';
12
13$conf['anthropic_key'] = '';
14
15$conf['pinecone_apikey'] = '';
16$conf['pinecone_baseurl'] = '';
17
18$conf['chroma_baseurl'] = '';
19$conf['chroma_apikey'] = '';
20$conf['chroma_tenant'] = 'default_tenant';
21$conf['chroma_database'] = 'default_database';
22$conf['chroma_collection'] = 'aichat';
23
24$conf['qdrant_baseurl'] = '';
25$conf['qdrant_apikey'] = '';
26$conf['qdrant_collection'] = 'aichat';
27
28$conf['chunkSize'] = 1500;
29$conf['contextChunks'] = 5;
30
31$conf['logging'] = 0;
32$conf['restrict'] = '';
33$conf['skipRegex'] = ':(playground|sandbox)(:|$)';
34$conf['matchRegex'] = '';
35$conf['preferUIlanguage'] = 0;
36