xref: /plugin/aichat/conf/default.php (revision e3640be850ce50dedfa84d85fcca5c951393e714)
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
9f6ef2e50SAndreas Gohr
10dce0dee5SAndreas Gohr$conf['chatmodel'] = 'OpenAI gpt-3.5-turbo';
11dce0dee5SAndreas Gohr$conf['embedmodel'] = 'OpenAI text-embedding-ada-002';
12dce0dee5SAndreas Gohr$conf['storage'] = 'SQLite';
13dce0dee5SAndreas Gohr
14*e3640be8SAndreas Gohr$conf['openai_apikey']    = '';
15*e3640be8SAndreas Gohr$conf['openai_org']    = '';
16*e3640be8SAndreas Gohr
17*e3640be8SAndreas Gohr$conf['anthropic_apikey'] = '';
18*e3640be8SAndreas Gohr
19cfd76f4aSAndreas Gohr$conf['mistral_apikey'] = '';
20d02b7935SAndreas Gohr
2113dbfc23SAndreas Gohr$conf['pinecone_apikey'] = '';
2213dbfc23SAndreas Gohr$conf['pinecone_baseurl'] = '';
2313dbfc23SAndreas Gohr
245e6dd16eSAndreas Gohr$conf['chroma_baseurl'] = '';
255e6dd16eSAndreas Gohr$conf['chroma_apikey'] = '';
265e6dd16eSAndreas Gohr$conf['chroma_tenant'] = 'default_tenant';
275e6dd16eSAndreas Gohr$conf['chroma_database'] = 'default_database';
285e6dd16eSAndreas Gohr$conf['chroma_collection'] = 'aichat';
295e6dd16eSAndreas Gohr
304c0099a8SAndreas Gohr$conf['qdrant_baseurl'] = '';
314c0099a8SAndreas Gohr$conf['qdrant_apikey'] = '';
324c0099a8SAndreas Gohr$conf['qdrant_collection'] = 'aichat';
334c0099a8SAndreas Gohr
3434a1c478SAndreas Gohr$conf['chunkSize'] = 1500;
3534a1c478SAndreas Gohr$conf['contextChunks'] = 5;
3634a1c478SAndreas Gohr
3782d5855eSAndreas Gohr$conf['logging'] = 0;
38c4127b8eSAndreas Gohr$conf['restrict'] = '';
39d5c102b3SAndreas Gohr$conf['skipRegex'] = ':(playground|sandbox)(:|$)';
40d5c102b3SAndreas Gohr$conf['matchRegex'] = '';
41219268b1SAndreas Gohr$conf['preferUIlanguage'] = 0;
42