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['logging'] = 'Log all questions and answers. Use the <a href="?do=admin&page=logviewer&facility=aichat">Log Viewer</a> to access.'; 22$lang['restrict'] = 'Restrict access to these users and groups (comma separated). Leave empty to allow all users.'; 23$lang['preferUIlanguage'] = 'How to work with multilingual wikis? (Requires the translation plugin)'; 24 25$lang['preferUIlanguage_o_0'] = 'Guess language, use all sources'; 26$lang['preferUIlanguage_o_1'] = 'Prefer UI language, use all sources'; 27$lang['preferUIlanguage_o_2'] = 'Prefer UI language, same language sources only'; 28