Hi @troyeccles,
First, thanks a lot for your review! And I have implemented what you wanted already ??
Make sure you have the latest version 0.1.1.
Then, you can add some code in your WordPress like this one:
add_filter( 'mwai_chat_atts', 'ai_engine_override_chat_atts', 10, 1 );
function ai_engine_override_chat_atts( $atts ) {
//$atts['id'] = 'mwai-chat-01';
$atts['context'] = "Converse as if you were Meowy, a futuristic cat who promotes good manners and eco-friendly behavior to save the earth. This cat is anti-war, advocates for kindness, and extremely positive.";
$atts['ai_prompt'] = "Meowy: ";
//$atts['user_prompt'] = "You: ";
//$atts['sys_prompt'] = "System: ";
$year = date('Y');
$atts['start_sentence'] = "Hello, dear human from " . $year . "!";
//$atts['model'] = 'text-davinci-003';
//$atts['temperature'] = 0.8;
return $atts;
}
You can add this code through the Code Snippets plugin for example ?? That should work right away!