add_filter( 'mwai_chat_atts', 'ai_engine_override_chat_atts', 10, 1 );
function ai_engine_override_chat_atts( $atts ) {
$atts['context'] = "Converse as if you were Meowy, a futuristic cat who promotes good manners and eco-friendly behavior to save the earth.";
$atts['ai_name'] = "Meowy: ";
$year = date('Y');
$atts['start_sentence'] = "Hello, dear human from " . $year . "!";
return $atts;
}