xref: /plugin/aichat/conf/default.php (revision dce0dee5ef27bcbbc5570fc278f3e75f426c19c5)
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
13*dce0dee5SAndreas Gohr$conf['chatmodel'] = 'OpenAI gpt-3.5-turbo';
14*dce0dee5SAndreas Gohr$conf['embedmodel'] = 'OpenAI text-embedding-ada-002';
15*dce0dee5SAndreas Gohr$conf['storage'] = 'SQLite';
16*dce0dee5SAndreas Gohr
17d02b7935SAndreas Gohr$conf['anthropic_key'] = '';
18d02b7935SAndreas Gohr
1913dbfc23SAndreas Gohr$conf['pinecone_apikey'] = '';
2013dbfc23SAndreas Gohr$conf['pinecone_baseurl'] = '';
2113dbfc23SAndreas Gohr
225e6dd16eSAndreas Gohr$conf['chroma_baseurl'] = '';
235e6dd16eSAndreas Gohr$conf['chroma_apikey'] = '';
245e6dd16eSAndreas Gohr$conf['chroma_tenant'] = 'default_tenant';
255e6dd16eSAndreas Gohr$conf['chroma_database'] = 'default_database';
265e6dd16eSAndreas Gohr$conf['chroma_collection'] = 'aichat';
275e6dd16eSAndreas Gohr
284c0099a8SAndreas Gohr$conf['qdrant_baseurl'] = '';
294c0099a8SAndreas Gohr$conf['qdrant_apikey'] = '';
304c0099a8SAndreas Gohr$conf['qdrant_collection'] = 'aichat';
314c0099a8SAndreas Gohr
3234a1c478SAndreas Gohr$conf['chunkSize'] = 1500;
3334a1c478SAndreas Gohr$conf['contextChunks'] = 5;
3434a1c478SAndreas Gohr
3582d5855eSAndreas Gohr$conf['logging'] = 0;
36c4127b8eSAndreas Gohr$conf['restrict'] = '';
37d5c102b3SAndreas Gohr$conf['skipRegex'] = ':(playground|sandbox)(:|$)';
38d5c102b3SAndreas Gohr$conf['matchRegex'] = '';
39219268b1SAndreas Gohr$conf['preferUIlanguage'] = 0;
40