admin.php
3 years ago
ai.php
3 years ago
answer.php
3 years ago
core.php
3 years ago
init.php
3 years ago
query.php
3 years ago
rest.php
3 years ago
shortcodes.php
3 years ago
ui.php
3 years ago
shortcodes.php
216 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Shortcodes { |
| 4 | private $core = null; |
| 5 | private $namespace = 'ai-engine/v1'; |
| 6 | |
| 7 | public function __construct( $core ) { |
| 8 | $this->core = $core; |
| 9 | add_shortcode( 'mwai_chat', array( $this, 'chat' ) ); |
| 10 | add_action( 'rest_api_init', array( $this, 'rest_api_init' ) ); |
| 11 | } |
| 12 | |
| 13 | function rest_api_init() { |
| 14 | try { |
| 15 | register_rest_route( $this->namespace, '/chat', array( |
| 16 | 'methods' => 'POST', |
| 17 | 'callback' => array( $this, 'rest_chat' ), |
| 18 | 'permission_callback' => '__return_true' |
| 19 | ) ); |
| 20 | } |
| 21 | catch ( Exception $e ) { |
| 22 | var_dump( $e ); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | function rest_chat( $request ) { |
| 27 | try { |
| 28 | $params = $request->get_json_params(); |
| 29 | $prompt = $params['prompt']; |
| 30 | $model = $params['model']; |
| 31 | $temperature = $params['temperature']; |
| 32 | $query = new Meow_MWAI_Query( $prompt, 1024 ); |
| 33 | if ( $model ) { |
| 34 | $query->setModel( $model ); |
| 35 | } |
| 36 | if ( $temperature ) { |
| 37 | $query->setTemperature( $temperature ); |
| 38 | } |
| 39 | $answer = $this->core->ai->run( $query ); |
| 40 | return new WP_REST_Response([ 'success' => true, 'data' => $answer->result, 'usage' => $answer->usage ], 200 ); |
| 41 | } |
| 42 | catch ( Exception $e ) { |
| 43 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | function chat( $atts ) { |
| 48 | $atts = shortcode_atts([ |
| 49 | 'context' => "Converse as if you were Michael Jackson, talking from the afterlife. Be friendly, creative.", |
| 50 | 'ai_prompt' => "Michael: ", |
| 51 | 'user_prompt' => "You: ", |
| 52 | 'sys_prompt' => "System: ", |
| 53 | 'start_sentence' => "Hi, my friend.", |
| 54 | 'model' => 'text-davinci-003', |
| 55 | 'temperature' => 0.8 |
| 56 | ], $atts, 'meow_ai' ); |
| 57 | |
| 58 | $id = uniqid(); |
| 59 | $apiUrl = get_rest_url( null, 'ai-engine/v1/chat' ); |
| 60 | $onSentClickFn = "mwai_{$id}_onSendClick"; |
| 61 | $addReplyFn = "mwai_{$id}_addReply"; |
| 62 | $convertToHtmlFn = "mwai_{$id}_convertToHtml"; |
| 63 | ob_start(); |
| 64 | ?> |
| 65 | |
| 66 | <div id="mwai-chat-<?= $id ?>" class="mwai-chat"> |
| 67 | <div class="mwai-conversation"> |
| 68 | </div> |
| 69 | <div class="mwai-input"> |
| 70 | <input type="text" placeholder="Type your message here..." /> |
| 71 | <button>Send</button> |
| 72 | </div> |
| 73 | </div> |
| 74 | |
| 75 | <script> |
| 76 | function <?= $convertToHtmlFn ?>(text) { |
| 77 | // Split the input text into an array of lines |
| 78 | const lines = text.split('\n'); |
| 79 | |
| 80 | // Initialize an empty array to store the HTML |
| 81 | const html = []; |
| 82 | |
| 83 | // Initialize a variable to keep track of the current list type (none, bullet, or numbered) |
| 84 | let listType = 'none'; |
| 85 | |
| 86 | // Iterate over the lines |
| 87 | for (const line of lines) { |
| 88 | // Check if the line is a bullet point |
| 89 | if (line.startsWith('*')) { |
| 90 | // If the current list type is not a bullet point, start a new bullet point list |
| 91 | if (listType !== 'bullet') { |
| 92 | html.push('<ul>'); |
| 93 | listType = 'bullet'; |
| 94 | } |
| 95 | // Add the bullet point to the HTML |
| 96 | html.push(`<li>${line.substring(1).trim()}</li>`); |
| 97 | } |
| 98 | // Check if the line is a numbered list item |
| 99 | else if (line.match(/^\d+\./)) { |
| 100 | // If the current list type is not a numbered list, start a new numbered list |
| 101 | if (listType !== 'numbered') { |
| 102 | html.push('<ol>'); |
| 103 | listType = 'numbered'; |
| 104 | } |
| 105 | // Add the numbered list item to the HTML |
| 106 | html.push(`<li>${line.substring(line.indexOf('.') + 1).trim()}</li>`); |
| 107 | } |
| 108 | // Otherwise, the line is not part of a list |
| 109 | else { |
| 110 | // If the current list type is not "none", close the current list |
| 111 | if (listType !== 'none') { |
| 112 | html.push(listType === 'bullet' ? '</ul>' : '</ol>'); |
| 113 | listType = 'none'; |
| 114 | } |
| 115 | |
| 116 | // If the line starts with the AI or user prompt, replace it with a span with the appropriate class |
| 117 | if (line.startsWith('<?= $atts['ai_prompt'] ?>')) { |
| 118 | html.push(`<p><span class="mwai-ai-prompt"><?= $atts['ai_prompt'] ?></span>${line.substring('<?= $atts['ai_prompt'] ?>'.length).trim()}</p>`); |
| 119 | } |
| 120 | else if (line.startsWith('<?= $atts['user_prompt'] ?>')) { |
| 121 | html.push(`<p><span class="mwai-user-prompt"><?= $atts['user_prompt'] ?></span>${line.substring('<?= $atts['user_prompt'] ?>'.length).trim()}</p>`); |
| 122 | } |
| 123 | else { |
| 124 | // Otherwise, add the line as a paragraph to the HTML |
| 125 | html.push(`<p>${line.trim()}</p>`); |
| 126 | } |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | // If the current list type is not "none", close the current list |
| 131 | if (listType !== 'none') { |
| 132 | html.push(listType === 'bullet' ? '</ul>' : '</ol>'); |
| 133 | } |
| 134 | |
| 135 | // Join the HTML array into a single string and return it |
| 136 | return html.join(''); |
| 137 | } |
| 138 | |
| 139 | // Function to add a reply in the conversation |
| 140 | function <?= $addReplyFn ?>(text, type = 'user') { |
| 141 | var conversation = document.querySelector('#mwai-chat-<?= $id ?> .mwai-conversation'); |
| 142 | text = <?= $convertToHtmlFn ?>(text); |
| 143 | if (type === 'ai') { |
| 144 | conversation.innerHTML += '<div class="mwai-ai">' + text + '</div>'; |
| 145 | } |
| 146 | else if (type === 'system') { |
| 147 | conversation.innerHTML += '<div class="mwai-system">' + text + '</div>'; |
| 148 | } |
| 149 | else { |
| 150 | conversation.innerHTML += '<div class="mwai-user">' + text + '</div>'; |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | // Function to request the completion |
| 155 | function <?= $onSentClickFn ?>() { |
| 156 | |
| 157 | // Disable the button |
| 158 | var button = document.querySelector('#mwai-chat-<?= $id ?> .mwai-input button'); |
| 159 | button.disabled = true; |
| 160 | |
| 161 | // Add the user reply |
| 162 | var input = document.querySelector('#mwai-chat-<?= $id ?> .mwai-input input'); |
| 163 | <?= $addReplyFn ?>('<?= $atts['user_prompt'] ?>' + input.value, 'user'); |
| 164 | input.value = ''; |
| 165 | input.disabled = true; |
| 166 | |
| 167 | // Request the completion and add the reply |
| 168 | var conversation = document.querySelector('#mwai-chat-<?= $id ?> .mwai-conversation'); |
| 169 | var promptToUse = '<?= $atts['context'] ?>' + conversation.innerText + '\n'; |
| 170 | fetch('<?= $apiUrl ?>', { method: 'POST', headers: { 'Content-Type': 'application/json' }, |
| 171 | body: JSON.stringify({ |
| 172 | prompt: promptToUse, |
| 173 | model: '<?= $atts['model'] ?>', |
| 174 | temperature: '<?= $atts['temperature'] ?>' |
| 175 | }) |
| 176 | }) |
| 177 | .then(response => response.json()) |
| 178 | .then(data => { |
| 179 | console.log(data); |
| 180 | if (!data.success) { |
| 181 | <?= $addReplyFn ?>('<?= $atts['sys_prompt'] ?>' + data.message, 'system'); |
| 182 | } |
| 183 | else { |
| 184 | <?= $addReplyFn ?>(data.data, 'ai'); |
| 185 | } |
| 186 | button.disabled = false; |
| 187 | input.disabled = false; |
| 188 | }) |
| 189 | .catch(error => { |
| 190 | console.error(error); |
| 191 | button.disabled = false; |
| 192 | input.disabled = false; |
| 193 | }); |
| 194 | } |
| 195 | |
| 196 | var input = document.querySelector('#mwai-chat-<?= $id ?> .mwai-input input'); |
| 197 | input.addEventListener('keypress', (event) => { |
| 198 | if (event.keyCode === 13) { |
| 199 | <?= $onSentClickFn ?>(); |
| 200 | } |
| 201 | }); |
| 202 | |
| 203 | var button = document.querySelector('#mwai-chat-<?= $id ?> .mwai-input button'); |
| 204 | button.addEventListener('click', (event) => { |
| 205 | <?= $onSentClickFn ?>(); |
| 206 | }); |
| 207 | |
| 208 | <?= $addReplyFn ?>('<?= $atts['ai_prompt'] ?>' + '<?= $atts['start_sentence'] ?>', 'ai'); |
| 209 | </script> |
| 210 | |
| 211 | <?php |
| 212 | $output = ob_get_contents(); |
| 213 | ob_end_clean(); |
| 214 | return $output; |
| 215 | } |
| 216 | } |