1*59036814SCostin Stroie<?php 2*59036814SCostin Stroie/** 3*59036814SCostin Stroie * English language file for config of DokuLLM plugin 4*59036814SCostin Stroie * 5*59036814SCostin Stroie */ 6*59036814SCostin Stroie 7*59036814SCostin Stroie$lang['api_url'] = 'LLM API Endpoint URL'; 8*59036814SCostin Stroie$lang['api_key'] = 'API Key for authentication with the LLM service'; 9*59036814SCostin Stroie$lang['model'] = 'Model name to use for text processing'; 10*59036814SCostin Stroie$lang['timeout'] = 'Request Timeout (seconds)'; 11*59036814SCostin Stroie$lang['language'] = 'Prompt Language'; 12*59036814SCostin Stroie$lang['temperature'] = 'Temperature (0.0-1.0) - Lower values make output more focused'; 13*59036814SCostin Stroie$lang['top_p'] = 'Top-P (Nucleus Sampling) - Controls diversity of responses'; 14*59036814SCostin Stroie$lang['top_k'] = 'Top-K - Limits token selection to top K options'; 15*59036814SCostin Stroie$lang['min_p'] = 'Min-P - Minimum probability threshold for token selection'; 16*59036814SCostin Stroie$lang['show_copy_button'] = 'Show Copy Page Button in the toolbar'; 17*59036814SCostin Stroie$lang['replace_id'] = 'Replace Template ID When Copying'; 18*59036814SCostin Stroie$lang['think'] = 'Enable Thinking in LLM Responses for deeper processing'; 19*59036814SCostin Stroie$lang['use_tools'] = 'Enable Tool Usage in LLM Responses for enhanced capabilities'; 20