1<?php 2/** 3 * english language file for aichat plugin 4 * 5 * @author Andreas Gohr <gohr@cosmocode.de> 6 */ 7 8$lang['openaikey'] = 'Your OpenAI API key'; 9$lang['openaiorg'] = 'Your OpenAI organization ID (if any)'; 10$lang['model'] = 'Which model to use. When changing models, be sure to run <code>php bin/plugin.php aichat embed -c</code> to rebuild the vector storage.'; 11 12$lang['pinecone_apikey'] = 'Your Pinecone API key if you want to use Pinecone as a storage backend.'; 13$lang['pinecone_baseurl'] = 'Your Pinecone base URL if you want to use Pinecone as a storage backend.'; 14 15$lang['chroma_baseurl'] = 'Your Chroma base URL if you want to use Chroma as a storage backend.'; 16$lang['chroma_apikey'] = 'Your Chroma API key. Empty if no authentication is required.'; 17$lang['chroma_tenant'] = 'Your Chroma tenant name.'; 18$lang['chroma_database'] = 'Your Chroma database name.'; 19$lang['chroma_collection'] = 'The collection to use. Will be created.'; 20 21$lang['qdrant_baseurl'] = 'Your Qdrant base URL if you want to use Qdrant as a storage backend.'; 22$lang['qdrant_apikey'] = 'Your Qdrant API key. Empty if no authentication is required.'; 23$lang['qdrant_collection'] = 'The collection to use. Will be created.'; 24 25$lang['logging'] = 'Log all questions and answers. Use the <a href="?do=admin&page=logviewer&facility=aichat">Log Viewer</a> to access.'; 26$lang['restrict'] = 'Restrict access to these users and groups (comma separated). Leave empty to allow all users.'; 27$lang['skipRegex'] = 'Skip indexing pages matching this regular expression (no delimiters).'; 28$lang['matchRegex'] = 'Only index pages matching this regular expression (no delimiters).'; 29$lang['preferUIlanguage'] = 'How to work with multilingual wikis? (Requires the translation plugin)'; 30 31$lang['preferUIlanguage_o_0'] = 'Guess language, use all sources'; 32$lang['preferUIlanguage_o_1'] = 'Prefer UI language, use all sources'; 33$lang['preferUIlanguage_o_2'] = 'Prefer UI language, same language sources only'; 34