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['pinecone_apikey'] = ''; 24$conf['pinecone_baseurl'] = ''; 25 26$conf['chroma_baseurl'] = ''; 27$conf['chroma_apikey'] = ''; 28$conf['chroma_tenant'] = 'default_tenant'; 29$conf['chroma_database'] = 'default_database'; 30$conf['chroma_collection'] = 'aichat'; 31 32$conf['qdrant_baseurl'] = ''; 33$conf['qdrant_apikey'] = ''; 34$conf['qdrant_collection'] = 'aichat'; 35 36$conf['chunkSize'] = 1500; 37$conf['contextChunks'] = 5; 38$conf['chatHistory'] = 1; 39$conf['rephraseHistory'] = 1; 40 41$conf['logging'] = 0; 42$conf['restrict'] = ''; 43$conf['skipRegex'] = ':(playground|sandbox)(:|$)'; 44$conf['matchRegex'] = ''; 45$conf['preferUIlanguage'] = 0; 46