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['language'] = 'Prompt Language'; 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