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