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['rephrasemodel'] = 'The �� model to use for rephrasing questions. Configure required credentials below.';
11$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.';
12$lang['storage'] = 'Which �� vector storage to use. Configure required credentials below.<br>�� You need to rebuild the vector storage when changing this setting.';
13$lang['customprompt'] = 'A custom prompt that is added to the prompt used by this plugin when querying the AI model. For consistency, it should be in English.';
14
15$lang['openai_apikey'] = '�� <b>OpenAI</b> API key';
16$lang['openai_org'] = '�� <b>OpenAI</b> Organization ID (if any)';
17$lang['gemini_apikey'] = '�� Google <b>Gemini</b> API key';
18$lang['anthropic_apikey'] = '�� <b>Anthropic</b> API key';
19$lang['mistral_apikey'] = '�� <b>Mistral</b> API key';
20$lang['voyageai_apikey'] = '�� <b>Voyage AI</b> API key';
21$lang['reka_apikey'] = '�� <b>Reka</b> API key';
22$lang['groq_apikey'] = '�� <b>Groq</b> API key';
23$lang['ollama_apiurl'] = '�� <b>Ollama</b> base URL';
24$lang['ollama_apikey'] = '�� <b>Ollama</b> API key (optional)';
25$lang['generic_apikey'] = '�� <b>Generic</b> (OpenAI compatible) API key';
26$lang['generic_apiurl'] = '�� <b>Generic</b> (OpenAI compatible) API URL';
27
28$lang['pinecone_apikey'] = '�� <b>Pinecone</b> API key';
29$lang['pinecone_baseurl'] = '�� <b>Pinecone</b> base URL';
30
31$lang['chroma_baseurl'] = '�� <b>Chroma</b> base URL';
32$lang['chroma_apikey'] = '�� <b>Chroma</b> API key. Empty if no authentication is required';
33$lang['chroma_tenant'] = '�� <b>Chroma</b> tenant name';
34$lang['chroma_database'] = '�� <b>Chroma</b> database name';
35$lang['chroma_collection'] = '�� <b>Chroma</b> collection. Will be created.';
36
37$lang['qdrant_baseurl'] = '�� <b>Qdrant</b> base URL';
38$lang['qdrant_apikey'] = '�� <b>Qdrant</b> API key. Empty if no authentication is required';
39$lang['qdrant_collection'] = '�� <b>Qdrant</b> collection. Will be created.';
40
41$lang['chunkSize'] = 'Maximum number of tokens per chunk.<br>�� You need to rebuild the vector storage when changing this setting.';
42$lang['similarityThreshold'] = 'Minimum similarity threshold when selecting sources for a question. 0-100.';
43$lang['contextChunks'] = 'Maximum number of chunks to send to the AI model for context.';
44$lang['fullpagecontext'] = 'Always send the full page content for each matching chunk as context for the AI model. This will not apply any token limits and may result in large, expensive requests. Use with large context models only!';
45$lang['chatHistory'] = 'Number of previous chat messages to consider for context in the conversation.';
46$lang['rephraseHistory'] = 'Number of previous chat messages to consider for context when rephrasing a question. Set to 0 to disable rephrasing.';
47
48$lang['logging'] = 'Log all questions and answers. Use the <a href="?do=admin&page=logviewer&facility=aichat">Log Viewer</a> to access.';
49$lang['restrict'] = 'Restrict access to these users and groups (comma separated). Leave empty to allow all users.';
50$lang['skipRegex'] = 'Skip indexing pages matching this regular expression (no delimiters).<br>�� You need to rebuild the vector storage when changing this setting.';
51$lang['matchRegex'] = 'Only index pages matching this regular expression (no delimiters).<br>�� You need to rebuild the vector storage when changing this setting.';
52$lang['ignoreRegex'] = 'Ignore parts of the page content matching this regular expression (no delimiters).<br>�� You need to rebuild the vector storage when changing this setting.';
53$lang['preferUIlanguage'] = 'How to work with multilingual wikis? (Requires the translation plugin)';
54
55$lang['preferUIlanguage_o_0'] = 'Guess language, use all sources';
56$lang['preferUIlanguage_o_1'] = 'Prefer UI language, use all sources';
57$lang['preferUIlanguage_o_2'] = 'Prefer UI language, same language sources only';
58