xref: /plugin/aichat/conf/default.php (revision 10789c175b44bee75b54261fbdf3bb1e6d176759)
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
14666b8ea7SAndreas Gohr$conf['customprompt'] = '';
15666b8ea7SAndreas Gohr
16e3640be8SAndreas Gohr$conf['openai_apikey']    = '';
17e3640be8SAndreas Gohr$conf['openai_org']    = '';
18e3640be8SAndreas Gohr
19*10789c17SAndreas Gohr$conf['gemini_apikey'] = '';
20*10789c17SAndreas Gohr
21e3640be8SAndreas Gohr$conf['anthropic_apikey'] = '';
22e3640be8SAndreas Gohr
23cfd76f4aSAndreas Gohr$conf['mistral_apikey'] = '';
24d02b7935SAndreas Gohr
2587e46484SAndreas Gohr$conf['voyageai_apikey'] = '';
2687e46484SAndreas Gohr
27eaa2c59dSAndreas Gohr$conf['reka_apikey'] = '';
28eaa2c59dSAndreas Gohr
29074b7701SAndreas Gohr$conf['groq_apikey'] = '';
30074b7701SAndreas Gohr
3113dbfc23SAndreas Gohr$conf['pinecone_apikey'] = '';
3213dbfc23SAndreas Gohr$conf['pinecone_baseurl'] = '';
3313dbfc23SAndreas Gohr
345e6dd16eSAndreas Gohr$conf['chroma_baseurl'] = '';
355e6dd16eSAndreas Gohr$conf['chroma_apikey'] = '';
365e6dd16eSAndreas Gohr$conf['chroma_tenant'] = 'default_tenant';
375e6dd16eSAndreas Gohr$conf['chroma_database'] = 'default_database';
385e6dd16eSAndreas Gohr$conf['chroma_collection'] = 'aichat';
395e6dd16eSAndreas Gohr
404c0099a8SAndreas Gohr$conf['qdrant_baseurl'] = '';
414c0099a8SAndreas Gohr$conf['qdrant_apikey'] = '';
424c0099a8SAndreas Gohr$conf['qdrant_collection'] = 'aichat';
434c0099a8SAndreas Gohr
4434a1c478SAndreas Gohr$conf['chunkSize'] = 1500;
45720bb43fSAndreas Gohr$conf['similarityThreshold'] = 75;
4634a1c478SAndreas Gohr$conf['contextChunks'] = 5;
4751aa8517SAndreas Gohr$conf['chatHistory'] = 1;
4851aa8517SAndreas Gohr$conf['rephraseHistory'] = 1;
4934a1c478SAndreas Gohr
5082d5855eSAndreas Gohr$conf['logging'] = 0;
51c4127b8eSAndreas Gohr$conf['restrict'] = '';
52d5c102b3SAndreas Gohr$conf['skipRegex'] = ':(playground|sandbox)(:|$)';
53d5c102b3SAndreas Gohr$conf['matchRegex'] = '';
54219268b1SAndreas Gohr$conf['preferUIlanguage'] = 0;
55