xref: /plugin/aichat/conf/default.php (revision 074b7701298bfc2f8fb181bdb361a02be5a51191)
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
23eaa2c59dSAndreas Gohr$conf['reka_apikey'] = '';
24eaa2c59dSAndreas Gohr
25*074b7701SAndreas Gohr$conf['groq_apikey'] = '';
26*074b7701SAndreas Gohr
2713dbfc23SAndreas Gohr$conf['pinecone_apikey'] = '';
2813dbfc23SAndreas Gohr$conf['pinecone_baseurl'] = '';
2913dbfc23SAndreas Gohr
305e6dd16eSAndreas Gohr$conf['chroma_baseurl'] = '';
315e6dd16eSAndreas Gohr$conf['chroma_apikey'] = '';
325e6dd16eSAndreas Gohr$conf['chroma_tenant'] = 'default_tenant';
335e6dd16eSAndreas Gohr$conf['chroma_database'] = 'default_database';
345e6dd16eSAndreas Gohr$conf['chroma_collection'] = 'aichat';
355e6dd16eSAndreas Gohr
364c0099a8SAndreas Gohr$conf['qdrant_baseurl'] = '';
374c0099a8SAndreas Gohr$conf['qdrant_apikey'] = '';
384c0099a8SAndreas Gohr$conf['qdrant_collection'] = 'aichat';
394c0099a8SAndreas Gohr
4034a1c478SAndreas Gohr$conf['chunkSize'] = 1500;
41720bb43fSAndreas Gohr$conf['similarityThreshold'] = 75;
4234a1c478SAndreas Gohr$conf['contextChunks'] = 5;
4351aa8517SAndreas Gohr$conf['chatHistory'] = 1;
4451aa8517SAndreas Gohr$conf['rephraseHistory'] = 1;
4534a1c478SAndreas Gohr
4682d5855eSAndreas Gohr$conf['logging'] = 0;
47c4127b8eSAndreas Gohr$conf['restrict'] = '';
48d5c102b3SAndreas Gohr$conf['skipRegex'] = ':(playground|sandbox)(:|$)';
49d5c102b3SAndreas Gohr$conf['matchRegex'] = '';
50219268b1SAndreas Gohr$conf['preferUIlanguage'] = 0;
51