Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
public function __construct() { $this->api_key = get_option('acp_api_key'); $this->api_model = get_option('acp_api_model', 'gpt-4.1-mini'); $this->temperature = floatval( get_option('acp_api_temperature', 0.3 ) ); $this->language = get_option('acp_api_language', 'fr'); $this->max_tokens = intval( get_option('acp_api_max_tokens', 2000 ) ); $this->api_endpoint = get_option('acp_api_endpoint', 'https://api.openai.com/v1/chat/completions'); }
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!