xref: /plugin/dokullm/lang/en/settings.php (revision 5c51ee8d7eb76a17ab698eebb24b7325bd0cebd2)
1<?php
2/**
3 * English language file for config of DokuLLM plugin
4 *
5 */
6
7$lang['api_url'] = 'LLM API Endpoint URL';
8$lang['api_key'] = 'API Key for authentication with the LLM service';
9$lang['model'] = 'Model name to use for text processing';
10$lang['timeout'] = 'Request Timeout (seconds)';
11$lang['profile'] = 'Prompt Profile';
12$lang['temperature'] = 'Temperature (0.0-1.0) - Lower values make output more focused';
13$lang['top_p'] = 'Top-P (Nucleus Sampling) - Controls diversity of responses';
14$lang['top_k'] = 'Top-K - Limits token selection to top K options';
15$lang['min_p'] = 'Min-P - Minimum probability threshold for token selection';
16$lang['show_copy_button'] = 'Show Copy Page Button in the toolbar';
17$lang['replace_id'] = 'Replace Template ID When Copying';
18$lang['think'] = 'Enable Thinking in LLM Responses for deeper processing';
19$lang['use_tools'] = 'Enable Tool Usage in LLM Responses for enhanced capabilities';
20$lang['chroma_host'] = 'ChromaDB Host - The hostname or IP address of your ChromaDB server';
21$lang['chroma_port'] = 'ChromaDB Port - The port number on which ChromaDB is running';
22$lang['chroma_tenant'] = 'ChromaDB Tenant - The tenant name for ChromaDB organization';
23$lang['chroma_database'] = 'ChromaDB Database - The database name within the ChromaDB tenant';
24$lang['chroma_collection'] = 'ChromaDB Collection - The default collection name for document storage';
25$lang['default_institution'] = 'Default Institution - The default institution identifier for templates';
26$lang['ollama_host'] = 'Ollama Host - The hostname or IP address of your Ollama server';
27$lang['ollama_port'] = 'Ollama Port - The port number on which Ollama is running';
28$lang['ollama_embeddings_model'] = 'Ollama Embeddings Model - The model name used for generating text embeddings';
29