1<?php
2
3/**
4 * Default settings for the aichat plugin
5 *
6 * @author Andreas Gohr <gohr@cosmocode.de>
7 */
8
9$conf['chatmodel'] = 'OpenAI gpt-3.5-turbo';
10$conf['rephrasemodel'] = 'OpenAI gpt-3.5-turbo';
11$conf['embedmodel'] = 'OpenAI text-embedding-ada-002';
12$conf['storage'] = 'SQLite';
13
14$conf['openai_apikey']    = '';
15$conf['openai_org']    = '';
16
17$conf['anthropic_apikey'] = '';
18
19$conf['mistral_apikey'] = '';
20
21$conf['voyageai_apikey'] = '';
22
23$conf['reka_apikey'] = '';
24
25$conf['groq_apikey'] = '';
26
27$conf['pinecone_apikey'] = '';
28$conf['pinecone_baseurl'] = '';
29
30$conf['chroma_baseurl'] = '';
31$conf['chroma_apikey'] = '';
32$conf['chroma_tenant'] = 'default_tenant';
33$conf['chroma_database'] = 'default_database';
34$conf['chroma_collection'] = 'aichat';
35
36$conf['qdrant_baseurl'] = '';
37$conf['qdrant_apikey'] = '';
38$conf['qdrant_collection'] = 'aichat';
39
40$conf['chunkSize'] = 1500;
41$conf['similarityThreshold'] = 75;
42$conf['contextChunks'] = 5;
43$conf['chatHistory'] = 1;
44$conf['rephraseHistory'] = 1;
45
46$conf['logging'] = 0;
47$conf['restrict'] = '';
48$conf['skipRegex'] = ':(playground|sandbox)(:|$)';
49$conf['matchRegex'] = '';
50$conf['preferUIlanguage'] = 0;
51