xref: /plugin/aichat/conf/default.php (revision 720bb43f9ac252f6e0b09e7b06804dec7c547a47)
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
9dce0dee5SAndreas Gohr$conf['chatmodel'] = 'OpenAI gpt-3.5-turbo';
1051aa8517SAndreas Gohr$conf['rephrasemodel'] = '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
2187e46484SAndreas Gohr$conf['voyageai_apikey'] = '';
2287e46484SAndreas 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;
37*720bb43fSAndreas Gohr$conf['similarityThreshold'] = 75;
3834a1c478SAndreas Gohr$conf['contextChunks'] = 5;
3951aa8517SAndreas Gohr$conf['chatHistory'] = 1;
4051aa8517SAndreas Gohr$conf['rephraseHistory'] = 1;
4134a1c478SAndreas Gohr
4282d5855eSAndreas Gohr$conf['logging'] = 0;
43c4127b8eSAndreas Gohr$conf['restrict'] = '';
44d5c102b3SAndreas Gohr$conf['skipRegex'] = ':(playground|sandbox)(:|$)';
45d5c102b3SAndreas Gohr$conf['matchRegex'] = '';
46219268b1SAndreas Gohr$conf['preferUIlanguage'] = 0;
47