xref: /plugin/aichat/lang/en/settings.php (revision e3640be850ce50dedfa84d85fcca5c951393e714)
18817535bSAndreas Gohr<?php
28817535bSAndreas Gohr/**
38817535bSAndreas Gohr * english language file for aichat plugin
48817535bSAndreas Gohr *
58817535bSAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de>
68817535bSAndreas Gohr */
78817535bSAndreas Gohr
85e6dd16eSAndreas Gohr
9*e3640be8SAndreas Gohr$lang['chatmodel'] = 'The �� model to use for chat completion. Configure required credentials below.';
10*e3640be8SAndreas Gohr$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*e3640be8SAndreas Gohr$lang['storage'] = 'Which �� vector storage to use. Configure required credentials below.<br>�� You need to rebuild the vector storage when changing this setting.';
125e6dd16eSAndreas Gohr
135e6dd16eSAndreas Gohr
14*e3640be8SAndreas Gohr$lang['openai_apikey'] = '�� <b>OpenAI</b> API key';
15*e3640be8SAndreas Gohr$lang['openai_org'] = '�� <b>OpenAI</b> Organization ID (if any)';
16*e3640be8SAndreas Gohr$lang['anthropic_apikey'] = '�� <b>Anthropic</b> API key';
17*e3640be8SAndreas Gohr$lang['mistral_apikey'] = '�� <b>Mistral</b> API key';
18*e3640be8SAndreas Gohr
19*e3640be8SAndreas Gohr$lang['pinecone_apikey'] = '�� <b>Pinecone</b> API key';
20*e3640be8SAndreas Gohr$lang['pinecone_baseurl'] = '�� <b>Pinecone</b> base URL';
21*e3640be8SAndreas Gohr
22*e3640be8SAndreas Gohr$lang['chroma_baseurl'] = '�� <b>Chroma</b> base URL';
23*e3640be8SAndreas Gohr$lang['chroma_apikey'] = '�� <b>Chroma</b> API key. Empty if no authentication is required';
24*e3640be8SAndreas Gohr$lang['chroma_tenant'] = '�� <b>Chroma</b> tenant name';
25*e3640be8SAndreas Gohr$lang['chroma_database'] = '�� <b>Chroma</b> database name';
26*e3640be8SAndreas Gohr$lang['chroma_collection'] = '�� <b>Chroma</b> collection. Will be created.';
27*e3640be8SAndreas Gohr
28*e3640be8SAndreas Gohr$lang['qdrant_baseurl'] = '�� <b>Qdrant</b> base URL';
29*e3640be8SAndreas Gohr$lang['qdrant_apikey'] = '�� <b>Qdrant</b> API key. Empty if no authentication is required';
30*e3640be8SAndreas Gohr$lang['qdrant_collection'] = '�� <b>Qdrant</b> collection. Will be created.';
31*e3640be8SAndreas Gohr
32*e3640be8SAndreas Gohr$lang['chunkSize'] = 'Maximum number of tokens per chunk.<br>�� You need to rebuild the vector storage when changing this setting.';
33*e3640be8SAndreas Gohr$lang['contextChunks'] = 'Number of chunks to send to the AI model for context.';
344c0099a8SAndreas Gohr
3582d5855eSAndreas Gohr$lang['logging'] = 'Log all questions and answers. Use the <a href="?do=admin&page=logviewer&facility=aichat">Log Viewer</a> to access.';
36c4127b8eSAndreas Gohr$lang['restrict'] = 'Restrict access to these users and groups (comma separated). Leave empty to allow all users.';
37d5c102b3SAndreas Gohr$lang['skipRegex'] = 'Skip indexing pages matching this regular expression (no delimiters).';
38d5c102b3SAndreas Gohr$lang['matchRegex'] = 'Only index pages matching this regular expression (no delimiters).';
39e33a1d7aSAndreas Gohr$lang['preferUIlanguage'] = 'How to work with multilingual wikis? (Requires the translation plugin)';
40e33a1d7aSAndreas Gohr
41e33a1d7aSAndreas Gohr$lang['preferUIlanguage_o_0'] = 'Guess language, use all sources';
42e33a1d7aSAndreas Gohr$lang['preferUIlanguage_o_1'] = 'Prefer UI language, use all sources';
43e33a1d7aSAndreas Gohr$lang['preferUIlanguage_o_2'] = 'Prefer UI language, same language sources only';
44