1<?php
2/**
3 * English language file for aichatlocal plugin
4 *
5 * @author Heinrich Krupp <heinrich.krupp@gmail.com>
6 */
7
8$lang['local_llm_baseurl'] = 'Base URL of your local LLM API endpoint (e.g., http://localhost:8000)';
9$lang['local_llm_apikey'] = 'API key for local LLM authentication (leave empty if not required)';
10
11// Error messages that might be shown in the admin interface
12$lang['error_no_url'] = 'Local LLM base URL is not configured';
13$lang['error_invalid_url'] = 'Invalid Local LLM base URL format';
14$lang['error_connection'] = 'Could not connect to Local LLM API';
15
16// Success messages
17$lang['success_test'] = 'Successfully connected to Local LLM API';
18
19// Help texts for configuration
20$lang['local_llm_baseurl_help'] = 'Enter the full URL where your local LLM API is running. Make sure the API is OpenAI-compatible and includes the necessary endpoints.';
21$lang['local_llm_apikey_help'] = 'If your local LLM requires authentication, enter the API key here. The key will be sent as a Bearer token in the Authorization header.';
22