chatbot-chatgpt.css
3 years ago
chatbot-chatgpt.scss
3 years ago
chatbot.php
3 years ago
imagesbot.php
3 years ago
statistics.php
3 years ago
chatbot.php
322 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Modules_Chatbot { |
| 4 | private $core = null; |
| 5 | private $namespace = 'ai-engine/v1'; |
| 6 | |
| 7 | public function __construct() { |
| 8 | if ( is_admin() ) { |
| 9 | return; |
| 10 | } |
| 11 | |
| 12 | global $mwai_core; |
| 13 | $this->core = $mwai_core; |
| 14 | add_shortcode( 'mwai_chat', array( $this, 'chat' ) ); |
| 15 | add_shortcode( 'mwai_chatbot', array( $this, 'chat' ) ); |
| 16 | add_action( 'rest_api_init', array( $this, 'rest_api_init' ) ); |
| 17 | |
| 18 | if ( $this->core->get_option( 'shortcode_chat_inject' ) ) { |
| 19 | add_action( 'wp_footer', array( $this, 'inject_chat' ) ); |
| 20 | } |
| 21 | // Only for test now, but later we should probably import the JS/CSS |
| 22 | if ( $this->core->get_option( 'shortcode_chat_syntax_highlighting' ) ) { |
| 23 | wp_enqueue_script( 'mwai_chatbot', |
| 24 | '//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/highlight.min.js', [], null, false ); |
| 25 | wp_enqueue_style( 'mwai_chatbot', |
| 26 | '//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/stackoverflow-dark.min.css' ); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | function rest_api_init() { |
| 31 | try { |
| 32 | register_rest_route( $this->namespace, '/chat', array( |
| 33 | 'methods' => 'POST', |
| 34 | 'callback' => array( $this, 'rest_chat' ), |
| 35 | 'permission_callback' => '__return_true' |
| 36 | ) ); |
| 37 | } |
| 38 | catch ( Exception $e ) { |
| 39 | var_dump( $e ); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | function chatgpt_style( $id ) { |
| 44 | $css = file_get_contents( MWAI_PATH . '/classes/modules/chatbot-chatgpt.css' ); |
| 45 | $css = str_replace( '#mwai-chat-id', "#mwai-chat-{$id}", $css ); |
| 46 | return "<style>" . $css . "</style>"; |
| 47 | } |
| 48 | |
| 49 | function rest_chat( $request ) { |
| 50 | try { |
| 51 | $params = $request->get_json_params(); |
| 52 | $prompt = $params['prompt']; |
| 53 | $model = $params['model']; |
| 54 | $temperature = $params['temperature']; |
| 55 | $maxTokens = intval( $params['maxTokens'] ); |
| 56 | $apiKey = $params['apiKey']; |
| 57 | $stop = $params['stop']; |
| 58 | $query = new Meow_MWAI_QueryText( $prompt, 1024 ); |
| 59 | if ( $model ) { |
| 60 | $query->setModel( $model ); |
| 61 | } |
| 62 | if ( $temperature ) { |
| 63 | $query->setTemperature( $temperature ); |
| 64 | } |
| 65 | if ( $maxTokens ) { |
| 66 | $query->setMaxTokens( $maxTokens ); |
| 67 | } |
| 68 | if ( $stop ) { |
| 69 | $query->setStop( $stop ); |
| 70 | } |
| 71 | if ( $apiKey ) { |
| 72 | $query->setApiKey( $apiKey ); |
| 73 | } |
| 74 | $answer = $this->core->ai->run( $query ); |
| 75 | $rawText = $answer->result; |
| 76 | $html = apply_filters( 'mwai_chatbot_answer', $rawText ); |
| 77 | $html = $this->core->markdown_to_html( $rawText ); |
| 78 | return new WP_REST_Response([ 'success' => true, 'answer' => $rawText, 'html' => $html, 'usage' => $answer->usage ], 200 ); |
| 79 | } |
| 80 | catch ( Exception $e ) { |
| 81 | return new WP_REST_Response([ 'success' => false, 'message' => $e->getMessage() ], 500 ); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | function inject_chat() { |
| 86 | $params = $this->core->get_option( 'shortcode_chat_params' ); |
| 87 | echo $this->chat( $params ); |
| 88 | } |
| 89 | |
| 90 | function chat( $atts ) { |
| 91 | $override = $this->core->get_option( 'shortcode_chat_params_override' ); |
| 92 | $defaults_params = $override ? $this->core->get_option( 'shortcode_chat_params' ) : |
| 93 | $this->core->get_option( 'shortcode_chat_default_params' ); |
| 94 | $defaults_params['id'] = uniqid(); |
| 95 | $defaults = apply_filters( 'mwai_chatbot_params_defaults', $defaults_params ); |
| 96 | $atts = shortcode_atts( $defaults, $atts ); |
| 97 | $atts = apply_filters( 'mwai_chatbot_params', $atts ); |
| 98 | $apiUrl = get_rest_url( null, 'ai-engine/v1/chat' ); |
| 99 | $id = $atts['id']; |
| 100 | |
| 101 | // Functions |
| 102 | $onSentClickFn = "mwai_{$id}_onSendClick"; |
| 103 | $addReplyFn = "mwai_{$id}_addReply"; |
| 104 | $initChatBotFn = "mwai_{$id}_initChatBot"; |
| 105 | |
| 106 | // UI Parameters |
| 107 | $aiName = addslashes( trim($atts['ai_name']) ); |
| 108 | $userName = addslashes( trim($atts['user_name']) ); |
| 109 | $sysName = addslashes( trim($atts['sys_name']) ); |
| 110 | $context = addslashes( $atts['context'] ); |
| 111 | $textSend = addslashes( trim( $atts['text_send'] ) ); |
| 112 | $textInputPlaceholder = addslashes( trim( $atts['text_input_placeholder'] ) ); |
| 113 | $startSentence = addslashes( trim( $atts['start_sentence'] ) ); |
| 114 | $window = ( !!$atts['window'] || $atts['window'] === 'true' ) ? 'true' : 'false'; |
| 115 | $style = $atts['style']; |
| 116 | |
| 117 | // Chatbot System Parameters |
| 118 | $casuallyFineTuned = $atts['casually_fined_tuned'] === "true"; |
| 119 | $promptEnding = addslashes( trim( $atts['prompt_ending'] ) ); |
| 120 | $completionEnding = addslashes( trim( $atts['completion_ending'] ) ); |
| 121 | if ( $casuallyFineTuned ) { |
| 122 | $promptEnding = "\\n\\n===\\n\\n"; |
| 123 | $completionEnding = "\\n\\n"; |
| 124 | } |
| 125 | |
| 126 | // OpenAI Parameters |
| 127 | $model = $atts['model']; |
| 128 | $temperature = $atts['temperature']; |
| 129 | $maxTokens = $atts['max_tokens']; |
| 130 | $apiKey = $atts['api_key']; |
| 131 | |
| 132 | // Variables |
| 133 | $onGoingPrompt = "mwai_{$id}_onGoingPrompt"; |
| 134 | $baseClasses = "mwai-chat" . ( $window === 'true' ? " mwai-window" : "" ); |
| 135 | |
| 136 | // Output CSS, HTML and JS |
| 137 | ob_start(); |
| 138 | $style_content = ""; |
| 139 | if ( $style === 'chatgpt' ) { |
| 140 | $style_content = $this->chatgpt_style( $id, $style ); |
| 141 | } |
| 142 | echo apply_filters( 'mwai_chatbot_style', $style_content, $id ); |
| 143 | ?> |
| 144 | <div id="mwai-chat-<?= $id ?>" class="<?= $baseClasses ?>"> |
| 145 | <?php if ( $window === 'true' ) { ?> |
| 146 | <div class="mwai-close-button">⨯</div> |
| 147 | <div class="mwai-open-button"> |
| 148 | <img width="64" height="64" src="<?= plugins_url( '../../images/chat-green.svg', __FILE__ ) ?>" /> |
| 149 | </div> |
| 150 | <?php } ?> |
| 151 | <div class="mwai-content"> |
| 152 | <div class="mwai-conversation"> |
| 153 | </div> |
| 154 | <div class="mwai-input"> |
| 155 | <textarea rows="1" placeholder="<?= $textInputPlaceholder ?>"></textarea> |
| 156 | <button><span><?= $textSend ?></span></button> |
| 157 | </div> |
| 158 | </div> |
| 159 | </div> |
| 160 | |
| 161 | <script> |
| 162 | var <?= $onGoingPrompt ?> = '<?= $context ?>' + '\n\n'; |
| 163 | |
| 164 | // Push the reply in the conversation |
| 165 | function <?= $addReplyFn ?>(text, type = 'user') { |
| 166 | var conversation = document.querySelector('#mwai-chat-<?= $id ?> .mwai-conversation'); |
| 167 | var mwaiClasses = 'mwai-reply'; |
| 168 | if (type === 'ai') { |
| 169 | mwaiClasses += ' mwai-ai'; |
| 170 | } |
| 171 | else if (type === 'system') { |
| 172 | mwaiClasses += ' mwai-system'; |
| 173 | } |
| 174 | else { |
| 175 | mwaiClasses += ' mwai-user'; |
| 176 | } |
| 177 | var html = '<div class="' + mwaiClasses + '">'; |
| 178 | if (type === 'ai') { |
| 179 | html += '<span class="mwai-name"><?= $aiName ?></span>'; |
| 180 | } |
| 181 | else if (type === 'system') { |
| 182 | html += '<span class="mwai-name"><?= $sysName ?></span>'; |
| 183 | } |
| 184 | else { |
| 185 | html += '<span class="mwai-name"><?= $userName ?></span>'; |
| 186 | } |
| 187 | html += '<span class="mwai-text">' + text + '</span>'; |
| 188 | html += '</div>'; |
| 189 | conversation.innerHTML += html; |
| 190 | conversation.scrollTop = conversation.scrollHeight; |
| 191 | |
| 192 | // Syntax coloring |
| 193 | if (typeof hljs !== 'undefined') { |
| 194 | document.querySelectorAll('pre code').forEach((el) => { |
| 195 | hljs.highlightElement(el); |
| 196 | }); |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | // Function to request the completion |
| 201 | function <?= $onSentClickFn ?>() { |
| 202 | let input = document.querySelector('#mwai-chat-<?= $id ?> .mwai-input textarea'); |
| 203 | let inputText = input.value.trim(); |
| 204 | |
| 205 | if (inputText === '') { |
| 206 | return; |
| 207 | } |
| 208 | |
| 209 | // Disable the button |
| 210 | var button = document.querySelector('#mwai-chat-<?= $id ?> .mwai-input button'); |
| 211 | button.disabled = true; |
| 212 | |
| 213 | // Add the user reply |
| 214 | <?= $addReplyFn ?>(inputText, 'user'); |
| 215 | <?= $onGoingPrompt ?> += '<?= $userName ?>' + inputText + '\n'; |
| 216 | input.value = ''; |
| 217 | input.setAttribute('rows', 1); |
| 218 | input.disabled = true; |
| 219 | |
| 220 | // Let's build the prompt depending on the "system" |
| 221 | <?= $onGoingPrompt ?> += '<?= $aiName ?>'; |
| 222 | let prompt = <?= $onGoingPrompt ?>; |
| 223 | if (<?= $casuallyFineTuned ? '1' : '0' ?>) { |
| 224 | prompt = inputText + '<?= $promptEnding ?>'; |
| 225 | } |
| 226 | |
| 227 | // Request the completion |
| 228 | const data = { |
| 229 | prompt: prompt, |
| 230 | userName: '<?= $userName ?>', |
| 231 | aiName: '<?= $aiName ?>', |
| 232 | model: '<?= $model ?>', |
| 233 | temperature: '<?= $temperature ?>', |
| 234 | maxTokens: '<?= $maxTokens ?>', |
| 235 | stop: '<?= $completionEnding ?>', |
| 236 | apiKey: '<?= $apiKey ?>', |
| 237 | }; |
| 238 | console.log('[BOT] Sent: ', data); |
| 239 | fetch('<?= $apiUrl ?>', { method: 'POST', headers: { 'Content-Type': 'application/json' }, |
| 240 | body: JSON.stringify(data) |
| 241 | }) |
| 242 | .then(response => response.json()) |
| 243 | .then(data => { |
| 244 | console.log('[BOT] Recv: ', data); |
| 245 | if (!data.success) { |
| 246 | <?= $addReplyFn ?>(data.message, 'system'); |
| 247 | } |
| 248 | else { |
| 249 | <?= $addReplyFn ?>(data.html, 'ai'); |
| 250 | <?= $onGoingPrompt ?> += data.answer + '\n'; |
| 251 | } |
| 252 | button.disabled = false; |
| 253 | input.disabled = false; |
| 254 | input.focus(); |
| 255 | }) |
| 256 | .catch(error => { |
| 257 | console.error(error); |
| 258 | button.disabled = false; |
| 259 | input.disabled = false; |
| 260 | }); |
| 261 | } |
| 262 | |
| 263 | function mwaiSetTextAreaHeight(textarea, lines) { |
| 264 | var rows = textarea.getAttribute('rows'); |
| 265 | if (lines !== rows) { |
| 266 | textarea.setAttribute('rows', lines > 5 ? 5 : lines); |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | function <?= $initChatBotFn ?>() { |
| 271 | var input = document.querySelector('#mwai-chat-<?= $id ?> .mwai-input textarea'); |
| 272 | input.addEventListener('keypress', (event) => { |
| 273 | if (event.keyCode === 13 && !event.shiftKey) { |
| 274 | <?= $onSentClickFn ?>(); |
| 275 | } |
| 276 | }); |
| 277 | input.addEventListener('keydown', (event) => { |
| 278 | var rows = input.getAttribute('rows'); |
| 279 | if (event.keyCode === 13 && event.shiftKey) { |
| 280 | var lines = input.value.split('\n').length + 1; |
| 281 | mwaiSetTextAreaHeight(input, lines); |
| 282 | } |
| 283 | }); |
| 284 | input.addEventListener('keyup', (event) => { |
| 285 | var rows = input.getAttribute('rows'); |
| 286 | var lines = input.value.split('\n').length ; |
| 287 | mwaiSetTextAreaHeight(input, lines); |
| 288 | }); |
| 289 | var button = document.querySelector('#mwai-chat-<?= $id ?> .mwai-input button'); |
| 290 | button.addEventListener('click', (event) => { |
| 291 | <?= $onSentClickFn ?>(); |
| 292 | }); |
| 293 | |
| 294 | // If window, add event listener to mwai-open-button and mwai-close-button |
| 295 | if ( <?= $window ?> ) { |
| 296 | var openButton = document.querySelector('#mwai-chat-<?= $id ?> .mwai-open-button'); |
| 297 | openButton.addEventListener('click', (event) => { |
| 298 | var chat = document.querySelector('#mwai-chat-<?= $id ?>'); |
| 299 | chat.classList.add('mwai-open'); |
| 300 | input.focus(); |
| 301 | }); |
| 302 | var closeButton = document.querySelector('#mwai-chat-<?= $id ?> .mwai-close-button'); |
| 303 | closeButton.addEventListener('click', (event) => { |
| 304 | var chat = document.querySelector('#mwai-chat-<?= $id ?>'); |
| 305 | chat.classList.remove('mwai-open'); |
| 306 | }); |
| 307 | } |
| 308 | |
| 309 | <?= $addReplyFn ?>('<?= $startSentence ?>', 'ai'); |
| 310 | } |
| 311 | |
| 312 | <?= $initChatBotFn ?>(); |
| 313 | |
| 314 | </script> |
| 315 | |
| 316 | <?php |
| 317 | $output = ob_get_contents(); |
| 318 | ob_end_clean(); |
| 319 | $output = apply_filters( 'mwai_chatbot', $output, $atts ); |
| 320 | return $output; |
| 321 | } |
| 322 | } |