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 88817535bSAndreas Gohr$lang['openaikey'] = 'Your OpenAI API key'; 98817535bSAndreas Gohr$lang['openaiorg'] = 'Your OpenAI organization ID (if any)'; 10f6ef2e50SAndreas Gohr$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.'; 115e6dd16eSAndreas Gohr 125e6dd16eSAndreas Gohr$lang['pinecone_apikey'] = 'Your Pinecone API key if you want to use Pinecone as a storage backend.'; 135e6dd16eSAndreas Gohr$lang['pinecone_baseurl'] = 'Your Pinecone base URL if you want to use Pinecone as a storage backend.'; 145e6dd16eSAndreas Gohr 155e6dd16eSAndreas Gohr$lang['chroma_baseurl'] = 'Your Chroma base URL if you want to use Chroma as a storage backend.'; 165e6dd16eSAndreas Gohr$lang['chroma_apikey'] = 'Your Chroma API key. Empty if no authentication is required.'; 175e6dd16eSAndreas Gohr$lang['chroma_tenant'] = 'Your Chroma tenant name.'; 185e6dd16eSAndreas Gohr$lang['chroma_database'] = 'Your Chroma database name.'; 195e6dd16eSAndreas Gohr$lang['chroma_collection'] = 'The collection to use. Will be created.'; 205e6dd16eSAndreas Gohr 21*4c0099a8SAndreas Gohr$lang['qdrant_baseurl'] = 'Your Qdrant base URL if you want to use Qdrant as a storage backend.'; 22*4c0099a8SAndreas Gohr$lang['qdrant_apikey'] = 'Your Qdrant API key. Empty if no authentication is required.'; 23*4c0099a8SAndreas Gohr$lang['qdrant_collection'] = 'The collection to use. Will be created.'; 24*4c0099a8SAndreas Gohr 2582d5855eSAndreas Gohr$lang['logging'] = 'Log all questions and answers. Use the <a href="?do=admin&page=logviewer&facility=aichat">Log Viewer</a> to access.'; 26c4127b8eSAndreas Gohr$lang['restrict'] = 'Restrict access to these users and groups (comma separated). Leave empty to allow all users.'; 27e33a1d7aSAndreas Gohr$lang['preferUIlanguage'] = 'How to work with multilingual wikis? (Requires the translation plugin)'; 28e33a1d7aSAndreas Gohr 29e33a1d7aSAndreas Gohr$lang['preferUIlanguage_o_0'] = 'Guess language, use all sources'; 30e33a1d7aSAndreas Gohr$lang['preferUIlanguage_o_1'] = 'Prefer UI language, use all sources'; 31e33a1d7aSAndreas Gohr$lang['preferUIlanguage_o_2'] = 'Prefer UI language, same language sources only'; 32