<?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';
$lang['chroma_host'] = 'ChromaDB Host - The hostname or IP address of your ChromaDB server';
$lang['chroma_port'] = 'ChromaDB Port - The port number on which ChromaDB is running';
$lang['chroma_tenant'] = 'ChromaDB Tenant - The tenant name for ChromaDB organization';
$lang['chroma_database'] = 'ChromaDB Database - The database name within the ChromaDB tenant';
$lang['chroma_collection'] = 'ChromaDB Collection - The default collection name for document storage';
$lang['default_institution'] = 'Default Institution - The default institution identifier for templates';
$lang['ollama_host'] = 'Ollama Host - The hostname or IP address of your Ollama server';
$lang['ollama_port'] = 'Ollama Port - The port number on which Ollama is running';
$lang['ollama_embeddings_model'] = 'Ollama Embeddings Model - The model name used for generating text embeddings';
