1<?php 2/** 3 * english language file for aichat plugin 4 * 5 * @author Andreas Gohr <gohr@cosmocode.de> 6 */ 7 8 9$lang['chatmodel'] = 'The model to use for chat completion. Configure required credentials below.'; 10$lang['embedmodel'] = 'The model to use for text embedding. Configure required credentials below.<br> You need to rebuild the vector storage when changing this setting.'; 11$lang['storage'] = 'Which vector storage to use. Configure required credentials below.<br> You need to rebuild the vector storage when changing this setting.'; 12 13 14$lang['openai_apikey'] = ' <b>OpenAI</b> API key'; 15$lang['openai_org'] = ' <b>OpenAI</b> Organization ID (if any)'; 16$lang['anthropic_apikey'] = ' <b>Anthropic</b> API key'; 17$lang['mistral_apikey'] = ' <b>Mistral</b> API key'; 18$lang['voyageai_apikey'] = ' <b>Voyage AI</b> API key'; 19 20$lang['pinecone_apikey'] = ' <b>Pinecone</b> API key'; 21$lang['pinecone_baseurl'] = ' <b>Pinecone</b> base URL'; 22 23$lang['chroma_baseurl'] = ' <b>Chroma</b> base URL'; 24$lang['chroma_apikey'] = ' <b>Chroma</b> API key. Empty if no authentication is required'; 25$lang['chroma_tenant'] = ' <b>Chroma</b> tenant name'; 26$lang['chroma_database'] = ' <b>Chroma</b> database name'; 27$lang['chroma_collection'] = ' <b>Chroma</b> collection. Will be created.'; 28 29$lang['qdrant_baseurl'] = ' <b>Qdrant</b> base URL'; 30$lang['qdrant_apikey'] = ' <b>Qdrant</b> API key. Empty if no authentication is required'; 31$lang['qdrant_collection'] = ' <b>Qdrant</b> collection. Will be created.'; 32 33$lang['chunkSize'] = 'Maximum number of tokens per chunk.<br> You need to rebuild the vector storage when changing this setting.'; 34$lang['contextChunks'] = 'Number of chunks to send to the AI model for context.'; 35 36$lang['logging'] = 'Log all questions and answers. Use the <a href="?do=admin&page=logviewer&facility=aichat">Log Viewer</a> to access.'; 37$lang['restrict'] = 'Restrict access to these users and groups (comma separated). Leave empty to allow all users.'; 38$lang['skipRegex'] = 'Skip indexing pages matching this regular expression (no delimiters).'; 39$lang['matchRegex'] = 'Only index pages matching this regular expression (no delimiters).'; 40$lang['preferUIlanguage'] = 'How to work with multilingual wikis? (Requires the translation plugin)'; 41 42$lang['preferUIlanguage_o_0'] = 'Guess language, use all sources'; 43$lang['preferUIlanguage_o_1'] = 'Prefer UI language, use all sources'; 44$lang['preferUIlanguage_o_2'] = 'Prefer UI language, same language sources only'; 45