xref: /plugin/aichat/conf/default.php (revision 87e464844e8a4bc0fa03608147b1a25b9b20b678)
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
14e3640be8SAndreas Gohr$conf['openai_apikey']    = '';
15e3640be8SAndreas Gohr$conf['openai_org']    = '';
16e3640be8SAndreas Gohr
17e3640be8SAndreas Gohr$conf['anthropic_apikey'] = '';
18e3640be8SAndreas Gohr
19cfd76f4aSAndreas Gohr$conf['mistral_apikey'] = '';
20d02b7935SAndreas Gohr
21*87e46484SAndreas Gohr$conf['voyageai_apikey'] = '';
22*87e46484SAndreas Gohr
2313dbfc23SAndreas Gohr$conf['pinecone_apikey'] = '';
2413dbfc23SAndreas Gohr$conf['pinecone_baseurl'] = '';
2513dbfc23SAndreas Gohr
265e6dd16eSAndreas Gohr$conf['chroma_baseurl'] = '';
275e6dd16eSAndreas Gohr$conf['chroma_apikey'] = '';
285e6dd16eSAndreas Gohr$conf['chroma_tenant'] = 'default_tenant';
295e6dd16eSAndreas Gohr$conf['chroma_database'] = 'default_database';
305e6dd16eSAndreas Gohr$conf['chroma_collection'] = 'aichat';
315e6dd16eSAndreas Gohr
324c0099a8SAndreas Gohr$conf['qdrant_baseurl'] = '';
334c0099a8SAndreas Gohr$conf['qdrant_apikey'] = '';
344c0099a8SAndreas Gohr$conf['qdrant_collection'] = 'aichat';
354c0099a8SAndreas Gohr
3634a1c478SAndreas Gohr$conf['chunkSize'] = 1500;
3734a1c478SAndreas Gohr$conf['contextChunks'] = 5;
3834a1c478SAndreas Gohr
3982d5855eSAndreas Gohr$conf['logging'] = 0;
40c4127b8eSAndreas Gohr$conf['restrict'] = '';
41d5c102b3SAndreas Gohr$conf['skipRegex'] = ':(playground|sandbox)(:|$)';
42d5c102b3SAndreas Gohr$conf['matchRegex'] = '';
43219268b1SAndreas Gohr$conf['preferUIlanguage'] = 0;
44