xref: /plugin/aichat/conf/default.php (revision 4c0099a889ba3b789f9c81b3cd963aadb567ea68)
18817535bSAndreas Gohr<?php
27ebc7895Ssplitbrain
38817535bSAndreas Gohr/**
48817535bSAndreas Gohr * Default settings for the aichat plugin
58817535bSAndreas Gohr *
68817535bSAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de>
78817535bSAndreas Gohr */
88817535bSAndreas Gohr
98817535bSAndreas Gohr$conf['openaikey']    = '';
108817535bSAndreas Gohr$conf['openaiorg']    = '';
11f6ef2e50SAndreas Gohr$conf['model'] = 'OpenAI\\GPT35Turbo';
12f6ef2e50SAndreas Gohr
1313dbfc23SAndreas Gohr$conf['pinecone_apikey'] = '';
1413dbfc23SAndreas Gohr$conf['pinecone_baseurl'] = '';
1513dbfc23SAndreas Gohr
165e6dd16eSAndreas Gohr$conf['chroma_baseurl'] = '';
175e6dd16eSAndreas Gohr$conf['chroma_apikey'] = '';
185e6dd16eSAndreas Gohr$conf['chroma_tenant'] = 'default_tenant';
195e6dd16eSAndreas Gohr$conf['chroma_database'] = 'default_database';
205e6dd16eSAndreas Gohr$conf['chroma_collection'] = 'aichat';
215e6dd16eSAndreas Gohr
22*4c0099a8SAndreas Gohr$conf['qdrant_baseurl'] = '';
23*4c0099a8SAndreas Gohr$conf['qdrant_apikey'] = '';
24*4c0099a8SAndreas Gohr$conf['qdrant_collection'] = 'aichat';
25*4c0099a8SAndreas Gohr
2682d5855eSAndreas Gohr$conf['logging'] = 0;
27c4127b8eSAndreas Gohr$conf['restrict'] = '';
28219268b1SAndreas Gohr$conf['preferUIlanguage'] = 0;
29