xref: /plugin/aichat/conf/default.php (revision d72a84c5bd8b465526a89378df9883eea1b18eb6)
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
1910789c17SAndreas Gohr$conf['gemini_apikey'] = '';
2010789c17SAndreas 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
31*d72a84c5SAndreas Gohr$conf['ollama_apiurl'] = 'http://localhost:11434/api';
32ce8a8011SEduardo Mozart de Oliveira
332e22aefbSAndreas Gohr$conf['generic_apikey'] = '';
342e22aefbSAndreas Gohr$conf['generic_apiurl'] = '';
352e22aefbSAndreas Gohr
3613dbfc23SAndreas Gohr$conf['pinecone_apikey'] = '';
3713dbfc23SAndreas Gohr$conf['pinecone_baseurl'] = '';
3813dbfc23SAndreas Gohr
395e6dd16eSAndreas Gohr$conf['chroma_baseurl'] = '';
405e6dd16eSAndreas Gohr$conf['chroma_apikey'] = '';
415e6dd16eSAndreas Gohr$conf['chroma_tenant'] = 'default_tenant';
425e6dd16eSAndreas Gohr$conf['chroma_database'] = 'default_database';
435e6dd16eSAndreas Gohr$conf['chroma_collection'] = 'aichat';
445e6dd16eSAndreas Gohr
454c0099a8SAndreas Gohr$conf['qdrant_baseurl'] = '';
464c0099a8SAndreas Gohr$conf['qdrant_apikey'] = '';
474c0099a8SAndreas Gohr$conf['qdrant_collection'] = 'aichat';
484c0099a8SAndreas Gohr
4934a1c478SAndreas Gohr$conf['chunkSize'] = 1500;
50720bb43fSAndreas Gohr$conf['similarityThreshold'] = 75;
5134a1c478SAndreas Gohr$conf['contextChunks'] = 5;
529634d734SAndreas Gohr$conf['fullpagecontext'] = 0;
5351aa8517SAndreas Gohr$conf['chatHistory'] = 1;
5451aa8517SAndreas Gohr$conf['rephraseHistory'] = 1;
5534a1c478SAndreas Gohr
5682d5855eSAndreas Gohr$conf['logging'] = 0;
57c4127b8eSAndreas Gohr$conf['restrict'] = '';
58d5c102b3SAndreas Gohr$conf['skipRegex'] = ':(playground|sandbox)(:|$)';
59d5c102b3SAndreas Gohr$conf['matchRegex'] = '';
6010ce0ca9SAndreas Gohr$conf['ignoreRegex'] = '';
61219268b1SAndreas Gohr$conf['preferUIlanguage'] = 0;
62