modules
3 years ago
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
openai.php
3 years ago
query.php
3 years ago
queryimage.php
3 years ago
querytext.php
3 years ago
rest.php
3 years ago
ui.php
3 years ago
core.php
327 lines
| 1 | <?php |
| 2 | |
| 3 | require_once( MWAI_PATH . '/vendor/autoload.php' ); |
| 4 | |
| 5 | #region Constants |
| 6 | |
| 7 | // Price as of January 2023: https://openai.com/api/pricing/ |
| 8 | define( 'MWAI_OPENAI_PRICING', [ |
| 9 | // Base models: |
| 10 | [ "model" => "davinci", "price" => 0.02, "type" => "token", "unit" => 1 / 1000 ], |
| 11 | [ "model" => "curie", "price" => 0.002, "type" => "token", "unit" => 1 / 1000 ], |
| 12 | [ "model" => "babbage", "price" => 0.0005, "type" => "token", "unit" => 1 / 1000 ], |
| 13 | [ "model" => "ada", "price" => 0.0004, "type" => "token", "unit" => 1 / 1000 ], |
| 14 | // Image models: |
| 15 | [ "model" => "dall-e", "type" => "image", "unit" => 1, "options" => [ |
| 16 | [ "option" => "1024x1024", "price" => 0.02 ], |
| 17 | [ "option" => "512x512", "price" => 0.018 ], |
| 18 | [ "option" => "256x256", "price" => 0.016 ] |
| 19 | ], |
| 20 | ], |
| 21 | // Fine-tuned models: |
| 22 | [ "model" => "fn-davinci", "price" => 0.12, "type" => "token", "unit" => 1 / 1000 ], |
| 23 | [ "model" => "fn-curie", "price" => 0.012, "type" => "token", "unit" => 1 / 1000 ], |
| 24 | [ "model" => "fn-babbage", "price" => 0.0024, "type" => "token", "unit" => 1 / 1000 ], |
| 25 | [ "model" => "fn-ada", "price" => 0.0016, "type" => "token", "unit" => 1 / 1000 ], |
| 26 | ]); |
| 27 | |
| 28 | define( 'MWAI_CHATBOT_PARAMS', [ |
| 29 | // UI Parameters |
| 30 | 'id' => '', |
| 31 | 'env' => 'chatbot', |
| 32 | 'mode' => 'chat', |
| 33 | 'context' => "Converse as if you were an AI assistant. Be friendly, creative.", |
| 34 | 'ai_name' => "AI: ", |
| 35 | 'user_name' => "User: ", |
| 36 | 'guest_name' => "Guest: ", |
| 37 | 'sys_name' => "System: ", |
| 38 | 'start_sentence' => "Hi! How can I help you?", |
| 39 | 'text_send' => 'Send', |
| 40 | 'text_clear' => 'Clear', |
| 41 | 'text_input_placeholder' => 'Type your message...', |
| 42 | 'style' => 'chatgpt', |
| 43 | 'window' => false, |
| 44 | 'icon' => null, |
| 45 | 'icon_text' => '', |
| 46 | 'icon_position' => 'bottom-right', |
| 47 | 'fullscreen' => false, |
| 48 | // Chatbot System Parameters |
| 49 | 'casually_fine_tuned' => false, |
| 50 | 'content_aware' => false, |
| 51 | 'prompt_ending' => null, |
| 52 | 'completion_ending' => null, |
| 53 | // AI Parameters |
| 54 | 'model' => 'text-davinci-003', |
| 55 | 'temperature' => 0.8, |
| 56 | 'max_tokens' => 1024, |
| 57 | 'max_results' => 3, |
| 58 | 'api_key' => null |
| 59 | ] ); |
| 60 | |
| 61 | define( 'MWAI_LANGUAGES', [ |
| 62 | 'en' => 'English', |
| 63 | 'es' => 'Spanish', |
| 64 | 'fr' => 'French', |
| 65 | 'de' => 'German', |
| 66 | 'it' => 'Italian', |
| 67 | 'pt' => 'Portuguese', |
| 68 | 'ru' => 'Russian', |
| 69 | 'ja' => 'Japanese', |
| 70 | 'zh' => 'Chinese', |
| 71 | ] ); |
| 72 | |
| 73 | define ( 'MWAI_LIMITS', [ |
| 74 | 'enabled' => true, |
| 75 | 'guests' => [ |
| 76 | 'credits' => 3, |
| 77 | 'creditType' => 'queries', |
| 78 | 'timeFrame' => 'day', |
| 79 | 'isAbsolute' => false, |
| 80 | 'overLimitMessage' => "You have reached the limit.", |
| 81 | ], |
| 82 | 'users' => [ |
| 83 | 'credits' => 10, |
| 84 | 'creditType' => 'price', |
| 85 | 'timeFrame' => 'month', |
| 86 | 'isAbsolute' => false, |
| 87 | 'overLimitMessage' => "You have reached the limit.", |
| 88 | 'ignoredUsers' => "administrator,editor", |
| 89 | ], |
| 90 | ] ); |
| 91 | |
| 92 | define( 'MWAI_OPTIONS', [ |
| 93 | 'module_titles' => true, |
| 94 | 'module_excerpts' => true, |
| 95 | 'module_woocommerce' => true, |
| 96 | 'module_forms' => false, |
| 97 | 'module_blocks' => false, |
| 98 | 'module_playground' => true, |
| 99 | 'module_generator_content' => true, |
| 100 | 'module_generator_images' => true, |
| 101 | 'shortcode_chat' => true, |
| 102 | 'shortcode_chat_params' => MWAI_CHATBOT_PARAMS, |
| 103 | 'shortcode_chat_params_override' => false, |
| 104 | 'shortcode_chat_html' => true, |
| 105 | 'shortcode_chat_formatting' => true, |
| 106 | 'shortcode_chat_syntax_highlighting' => false, |
| 107 | 'shortcode_chat_logs' => '', // 'file', 'db', 'file,db' |
| 108 | 'shortcode_chat_inject' => false, |
| 109 | 'limits' => MWAI_LIMITS, |
| 110 | 'openai_apikey' => false, |
| 111 | 'openai_usage' => [], |
| 112 | 'openai_finetunes' => [], |
| 113 | 'openai_finetunes_deleted' => [], |
| 114 | 'extra_models' => "", |
| 115 | 'debug_mode' => true, |
| 116 | 'languages' => MWAI_LANGUAGES |
| 117 | ]); |
| 118 | #endregion |
| 119 | |
| 120 | class Meow_MWAI_Core |
| 121 | { |
| 122 | public $admin = null; |
| 123 | public $is_rest = false; |
| 124 | public $is_cli = false; |
| 125 | public $site_url = null; |
| 126 | public $ai = null; |
| 127 | private $option_name = 'mwai_options'; |
| 128 | public $defaultChatbotParams = MWAI_CHATBOT_PARAMS; |
| 129 | |
| 130 | public function __construct() { |
| 131 | $this->site_url = get_site_url(); |
| 132 | $this->is_rest = MeowCommon_Helpers::is_rest(); |
| 133 | $this->is_cli = defined( 'WP_CLI' ) && WP_CLI; |
| 134 | $this->ai = new Meow_MWAI_AI( $this ); |
| 135 | add_action( 'plugins_loaded', array( $this, 'init' ) ); |
| 136 | } |
| 137 | |
| 138 | function init() { |
| 139 | if ( $this->is_rest ) { |
| 140 | new Meow_MWAI_Rest( $this ); |
| 141 | } |
| 142 | if ( is_admin() ) { |
| 143 | new Meow_MWAI_Admin( $this ); |
| 144 | new Meow_MWAI_Modules_Assistants( $this ); |
| 145 | } |
| 146 | else { |
| 147 | //new Meow_MWAI_UI( $this ); |
| 148 | if ( $this->get_option( 'shortcode_chat' ) ) { |
| 149 | new Meow_MWAI_Modules_Chatbot(); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | // Advanced core |
| 154 | if ( class_exists( 'MeowPro_MWAI_Core' ) ) { |
| 155 | new MeowPro_MWAI_Core( $this ); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | #region Helpers |
| 160 | function can_access_settings() { |
| 161 | return apply_filters( 'mwai_allow_setup', current_user_can( 'manage_options' ) ); |
| 162 | } |
| 163 | |
| 164 | function can_access_features() { |
| 165 | $editor_or_admin = current_user_can( 'editor' ) || current_user_can( 'administrator' ); |
| 166 | return apply_filters( 'mwai_allow_usage', $editor_or_admin ); |
| 167 | } |
| 168 | |
| 169 | function isUrl( $url ) { |
| 170 | return strpos( $url, 'http' ) === 0 ? true : false; |
| 171 | } |
| 172 | |
| 173 | // Clean the text perfectly, resolve shortcodes, etc, etc. |
| 174 | function clean_text( $rawText = "" ) { |
| 175 | $text = strip_tags( $rawText ); |
| 176 | $text = strip_shortcodes( $text ); |
| 177 | $text = html_entity_decode( $text ); |
| 178 | $text = str_replace( array( "\r", "\n" ), "", $text ); |
| 179 | $sentences = preg_split( '/(?<=[.?!])(?=[a-zA-Z ])/', $text ); |
| 180 | foreach ( $sentences as $key => $sentence ) { |
| 181 | $sentences[$key] = trim( $sentence ); |
| 182 | } |
| 183 | $text = implode( " ", $sentences ); |
| 184 | $text = preg_replace( '/^[\pZ\pC]+|[\pZ\pC]+$/u', '', $text ); |
| 185 | return $text . " "; |
| 186 | } |
| 187 | |
| 188 | // Make sure there are no duplicate sentences, and keep the length under a maximum length. |
| 189 | function clean_sentences( $text, $maxLength = 1024 ) { |
| 190 | $sentences = preg_split( '/(?<=[.?!])(?=[a-zA-Z ])/', $text ); |
| 191 | $hashes = array(); |
| 192 | $uniqueSentences = array(); |
| 193 | $length = 0; |
| 194 | foreach ( $sentences as $sentence ) { |
| 195 | $sentence = preg_replace( '/^[\pZ\pC]+|[\pZ\pC]+$/u', '', $sentence ); |
| 196 | $hash = md5( $sentence ); |
| 197 | if ( !in_array( $hash, $hashes ) ) { |
| 198 | if ( $length + strlen( $sentence ) > $maxLength ) { |
| 199 | continue; |
| 200 | } |
| 201 | $hashes[] = $hash; |
| 202 | $uniqueSentences[] = $sentence; |
| 203 | $length += strlen( $sentence ); |
| 204 | } |
| 205 | } |
| 206 | $text = implode( " ", $uniqueSentences ); |
| 207 | $text = preg_replace( '/^[\pZ\pC]+|[\pZ\pC]+$/u', '', $text ); |
| 208 | return $text; |
| 209 | } |
| 210 | |
| 211 | function get_text_from_postId( $postId ) { |
| 212 | $post = get_post( $postId ); |
| 213 | if ( !$post ) { |
| 214 | return false; |
| 215 | } |
| 216 | $post->post_content = apply_filters( 'the_content', $post->post_content ); |
| 217 | $text = $this->clean_text( $post->post_content ); |
| 218 | $text = $this->clean_sentences( $text ); |
| 219 | return $text; |
| 220 | } |
| 221 | |
| 222 | function get_session_id() { |
| 223 | if ( !isset( $_SESSION ) ) { |
| 224 | error_log("AI Engine: There is no session."); |
| 225 | return uniqid(); |
| 226 | } |
| 227 | if ( isset( $_SESSION['mwai_session_id'] ) ) { |
| 228 | return $_SESSION['mwai_session_id']; |
| 229 | } |
| 230 | else { |
| 231 | $session_id = uniqid(); |
| 232 | $_SESSION['mwai_session_id'] = $session_id; |
| 233 | return $session_id; |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | // Get the UserID from the data, or from the current user |
| 238 | function get_user_id( $data = null ) { |
| 239 | if ( isset( $data ) && isset( $data['userId'] ) ) { |
| 240 | return (int)$data['userId']; |
| 241 | } |
| 242 | if ( is_user_logged_in() ) { |
| 243 | $current_user = wp_get_current_user(); |
| 244 | if ( $current_user->ID > 0 ) { |
| 245 | return $current_user->ID; |
| 246 | } |
| 247 | } |
| 248 | return null; |
| 249 | } |
| 250 | |
| 251 | function get_ip_address( $data = null ) { |
| 252 | if ( isset( $data ) && isset( $data['ip'] ) ) { |
| 253 | $data['ip'] = (string)$data['ip']; |
| 254 | } |
| 255 | else { |
| 256 | if ( isset( $_SERVER['REMOTE_ADDR'] ) ) { |
| 257 | $data['ip'] = $_SERVER['REMOTE_ADDR']; |
| 258 | } |
| 259 | else if ( isset( $_SERVER['HTTP_CLIENT_IP'] ) ) { |
| 260 | $data['ip'] = $_SERVER['HTTP_CLIENT_IP']; |
| 261 | } |
| 262 | else if ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { |
| 263 | $data['ip'] = $_SERVER['HTTP_X_FORWARDED_FOR']; |
| 264 | } |
| 265 | } |
| 266 | return $data['ip']; |
| 267 | } |
| 268 | |
| 269 | function markdown_to_html( $content ) { |
| 270 | $Parsedown = new Parsedown(); |
| 271 | $content = $Parsedown->text( $content ); |
| 272 | return $content; |
| 273 | } |
| 274 | #endregion |
| 275 | |
| 276 | #region Options |
| 277 | function get_all_options() { |
| 278 | $options = get_option( $this->option_name, null ); |
| 279 | foreach ( MWAI_OPTIONS as $key => $value ) { |
| 280 | if ( !isset( $options[$key] ) ) { |
| 281 | $options[$key] = $value; |
| 282 | } |
| 283 | if ( $key === 'languages' ) { |
| 284 | $options[$key] = apply_filters( 'mwai_languages', $options[$key] ); |
| 285 | } |
| 286 | } |
| 287 | $options['shortcode_chat_default_params'] = MWAI_CHATBOT_PARAMS; |
| 288 | $options['default_limits'] = MWAI_LIMITS; |
| 289 | return $options; |
| 290 | } |
| 291 | |
| 292 | // Validate and keep the options clean and logical. |
| 293 | function sanitize_options() { |
| 294 | $options = $this->get_all_options(); |
| 295 | $needs_update = false; |
| 296 | |
| 297 | // We can sanitize our future options here, let's always remember it. |
| 298 | // Now, it is empty... |
| 299 | |
| 300 | if ( $needs_update ) { |
| 301 | update_option( $this->option_name, $options, false ); |
| 302 | } |
| 303 | return $options; |
| 304 | } |
| 305 | |
| 306 | function update_options( $options ) { |
| 307 | if ( !update_option( $this->option_name, $options, false ) ) { |
| 308 | return false; |
| 309 | } |
| 310 | $options = $this->sanitize_options(); |
| 311 | return $options; |
| 312 | } |
| 313 | |
| 314 | function update_option( $option, $value ) { |
| 315 | $options = $this->get_all_options(); |
| 316 | $options[$option] = $value; |
| 317 | return $this->update_options( $options ); |
| 318 | } |
| 319 | |
| 320 | function get_option( $option, $default = null ) { |
| 321 | $options = $this->get_all_options(); |
| 322 | return $options[$option] ?? $default; |
| 323 | } |
| 324 | #endregion |
| 325 | } |
| 326 | |
| 327 | ?> |