<?php
/**
 * English language file for config of DokuLLM plugin
 *
 */

$lang['api_url'] = 'LLM API Endpoint URL';
$lang['api_key'] = 'API Key for authentication with the LLM service';
$lang['model'] = 'Model name to use for text processing';
$lang['timeout'] = 'Request Timeout (seconds)';
$lang['language'] = 'Prompt Language';
$lang['temperature'] = 'Temperature (0.0-1.0) - Lower values make output more focused';
$lang['top_p'] = 'Top-P (Nucleus Sampling) - Controls diversity of responses';
$lang['top_k'] = 'Top-K - Limits token selection to top K options';
$lang['min_p'] = 'Min-P - Minimum probability threshold for token selection';
$lang['show_copy_button'] = 'Show Copy Page Button in the toolbar';
$lang['replace_id'] = 'Replace Template ID When Copying';
$lang['think'] = 'Enable Thinking in LLM Responses for deeper processing';
$lang['use_tools'] = 'Enable Tool Usage in LLM Responses for enhanced capabilities';
