xref: /plugin/aichat/conf/default.php (revision eaa2c59defaae44a1c8b1feb607b4daba2c2382a)
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
23*eaa2c59dSAndreas Gohr$conf['reka_apikey'] = '';
24*eaa2c59dSAndreas Gohr
2513dbfc23SAndreas Gohr$conf['pinecone_apikey'] = '';
2613dbfc23SAndreas Gohr$conf['pinecone_baseurl'] = '';
2713dbfc23SAndreas Gohr
285e6dd16eSAndreas Gohr$conf['chroma_baseurl'] = '';
295e6dd16eSAndreas Gohr$conf['chroma_apikey'] = '';
305e6dd16eSAndreas Gohr$conf['chroma_tenant'] = 'default_tenant';
315e6dd16eSAndreas Gohr$conf['chroma_database'] = 'default_database';
325e6dd16eSAndreas Gohr$conf['chroma_collection'] = 'aichat';
335e6dd16eSAndreas Gohr
344c0099a8SAndreas Gohr$conf['qdrant_baseurl'] = '';
354c0099a8SAndreas Gohr$conf['qdrant_apikey'] = '';
364c0099a8SAndreas Gohr$conf['qdrant_collection'] = 'aichat';
374c0099a8SAndreas Gohr
3834a1c478SAndreas Gohr$conf['chunkSize'] = 1500;
39720bb43fSAndreas Gohr$conf['similarityThreshold'] = 75;
4034a1c478SAndreas Gohr$conf['contextChunks'] = 5;
4151aa8517SAndreas Gohr$conf['chatHistory'] = 1;
4251aa8517SAndreas Gohr$conf['rephraseHistory'] = 1;
4334a1c478SAndreas Gohr
4482d5855eSAndreas Gohr$conf['logging'] = 0;
45c4127b8eSAndreas Gohr$conf['restrict'] = '';
46d5c102b3SAndreas Gohr$conf['skipRegex'] = ':(playground|sandbox)(:|$)';
47d5c102b3SAndreas Gohr$conf['matchRegex'] = '';
48219268b1SAndreas Gohr$conf['preferUIlanguage'] = 0;
49