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['customprompt'] = ''; 15 16$conf['openai_apikey'] = ''; 17$conf['openai_org'] = ''; 18 19$conf['gemini_apikey'] = ''; 20 21$conf['anthropic_apikey'] = ''; 22 23$conf['mistral_apikey'] = ''; 24 25$conf['voyageai_apikey'] = ''; 26 27$conf['reka_apikey'] = ''; 28 29$conf['groq_apikey'] = ''; 30 31$conf['ollama_baseurl'] = ''; 32 33$conf['pinecone_apikey'] = ''; 34$conf['pinecone_baseurl'] = ''; 35 36$conf['chroma_baseurl'] = ''; 37$conf['chroma_apikey'] = ''; 38$conf['chroma_tenant'] = 'default_tenant'; 39$conf['chroma_database'] = 'default_database'; 40$conf['chroma_collection'] = 'aichat'; 41 42$conf['qdrant_baseurl'] = ''; 43$conf['qdrant_apikey'] = ''; 44$conf['qdrant_collection'] = 'aichat'; 45 46$conf['chunkSize'] = 1500; 47$conf['similarityThreshold'] = 75; 48$conf['contextChunks'] = 5; 49$conf['chatHistory'] = 1; 50$conf['rephraseHistory'] = 1; 51 52$conf['logging'] = 0; 53$conf['restrict'] = ''; 54$conf['skipRegex'] = ':(playground|sandbox)(:|$)'; 55$conf['matchRegex'] = ''; 56$conf['ignoreRegex'] = ''; 57$conf['preferUIlanguage'] = 0; 58