anthropic.php
1 year ago
core.php
1 year ago
factory.php
1 year ago
google.php
1 year ago
huggingface.php
1 year ago
openai.php
1 year ago
openrouter.php
1 year ago
replicate.php
1 year ago
core.php
375 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Engines_Core { |
| 4 | protected $core = null; |
| 5 | public $env = null; |
| 6 | public $envId = null; |
| 7 | public $envType = null; |
| 8 | |
| 9 | // Streaming |
| 10 | protected $streamCallback = null; |
| 11 | protected $streamTemporaryBuffer = ""; |
| 12 | protected $streamBuffer = ""; |
| 13 | protected $streamHeaders = []; |
| 14 | protected $streamContent = ""; |
| 15 | |
| 16 | public function __construct( $core, $env ) { |
| 17 | $this->core = $core; |
| 18 | $this->env = $env; |
| 19 | $this->envId = isset( $env['id'] ) ? $env['id'] : null; |
| 20 | $this->envType = isset( $env['type'] ) ? $env['type'] : null; |
| 21 | } |
| 22 | |
| 23 | public function run( $query, $streamCallback = null, $maxDepth = 5 ) { |
| 24 | |
| 25 | // Check if the query is allowed. |
| 26 | $limits = $this->core->get_option( 'limits' ); |
| 27 | $allowed = apply_filters( 'mwai_ai_allowed', true, $query, $limits ); |
| 28 | if ( $allowed !== true ) { |
| 29 | $message = is_string( $allowed ) ? $allowed : 'Unauthorized query.'; |
| 30 | throw new Exception( $message ); |
| 31 | } |
| 32 | |
| 33 | // Important as it makes sure everything is consolidated in the query and the engine. |
| 34 | $this->final_checks( $query ); |
| 35 | |
| 36 | // Run the query |
| 37 | $reply = null; |
| 38 | if ( $query instanceof Meow_MWAI_Query_Text || $query instanceof Meow_MWAI_Query_Feedback ) { |
| 39 | $reply = $this->run_completion_query( $query, $streamCallback ); |
| 40 | } |
| 41 | else if ( $query instanceof Meow_MWAI_Query_Assistant || $query instanceof Meow_MWAI_Query_AssistFeedback ) { |
| 42 | $reply = $this->run_assistant_query( $query, $streamCallback ); |
| 43 | if ( $reply === null ) { |
| 44 | throw new Exception( 'Assistants are not supported in this version of AI Engine.' ); |
| 45 | } |
| 46 | } |
| 47 | else if ( $query instanceof Meow_MWAI_Query_Embed ) { |
| 48 | $reply = $this->run_embedding_query( $query ); |
| 49 | } |
| 50 | else if ( $query instanceof Meow_MWAI_Query_Image ) { |
| 51 | $reply = $this->run_image_query( $query ); |
| 52 | } |
| 53 | else if ( $query instanceof Meow_MWAI_Query_Transcribe ) { |
| 54 | $reply = $this->run_transcribe_query( $query ); |
| 55 | } |
| 56 | else { |
| 57 | throw new Exception( 'Unknown query type.' ); |
| 58 | } |
| 59 | |
| 60 | // Allow to modify the reply before it is sent. |
| 61 | $reply = apply_filters( 'mwai_ai_reply', $reply, $query ); |
| 62 | |
| 63 | // Function Call |
| 64 | if ( !empty( $reply->needFeedbacks ) ) { |
| 65 | |
| 66 | // Check if we reached the maximum depth |
| 67 | if ( $maxDepth <= 0 ) { |
| 68 | throw new Exception( 'AI Engine: There seems to be a loop in the function/tools calls.' ); |
| 69 | } |
| 70 | |
| 71 | // We should use a feedback query around the original query |
| 72 | if ( !( $query instanceof Meow_MWAI_Query_AssistFeedback) && !( $query instanceof Meow_MWAI_Query_Feedback ) ) { |
| 73 | $queryClass = $query instanceof Meow_MWAI_Query_Assistant ? |
| 74 | Meow_MWAI_Query_AssistFeedback::class : Meow_MWAI_Query_Feedback::class; |
| 75 | $query = new $queryClass( $reply, $reply->query ); |
| 76 | } |
| 77 | |
| 78 | // The engine for the model will handle the feedback query nicely |
| 79 | // In the case of Anthropic, it's like a "discussion" between the user (= WordPress's AI Engine |
| 80 | // and the model (= Anthropic). The feedback is a way to communicate between the two. |
| 81 | $feedback_blocks = []; |
| 82 | foreach ( $reply->needFeedbacks as $needFeedback ) { |
| 83 | $rawMessageKey = md5( serialize( $needFeedback['rawMessage'] ) ); |
| 84 | |
| 85 | // Initialize the feedback block for this rawMessage if it hasn't been initialized yet |
| 86 | if ( !isset( $feedback_blocks[$rawMessageKey] ) ) { |
| 87 | $feedback_blocks[$rawMessageKey] = [ |
| 88 | 'rawMessage' => $needFeedback['rawMessage'], |
| 89 | 'feedbacks' => [] |
| 90 | ]; |
| 91 | } |
| 92 | |
| 93 | // Get the value related to this feedback (usually, a function call) |
| 94 | $value = apply_filters( 'mwai_ai_feedback', null, $needFeedback, $reply ); |
| 95 | |
| 96 | if ( $value === null ) { |
| 97 | Meow_MWAI_Logging::warn( "The returned value for '{$needFeedback['name']}' was null." ); |
| 98 | $value = "[NO VALUE RETURNED - DO NOT SHOW THIS]"; |
| 99 | } |
| 100 | |
| 101 | // Add the feedback information to the appropriate feedback block |
| 102 | $feedback_blocks[$rawMessageKey]['feedbacks'][] = [ |
| 103 | 'request' => $needFeedback, // TODO: Meow_MWAI_Feedback_Request |
| 104 | 'reply' => [ 'value' => $value ] // TODO: Meow_MWAI_Feedback_Reply |
| 105 | ]; |
| 106 | } |
| 107 | |
| 108 | foreach ( $feedback_blocks as $feedback_block ) { |
| 109 | $query->add_feedback_block( $feedback_block ); |
| 110 | } |
| 111 | |
| 112 | // Run the feedback query |
| 113 | $reply = $this->run( $query, $streamCallback, $maxDepth - 1 ); |
| 114 | } |
| 115 | |
| 116 | return $reply; |
| 117 | } |
| 118 | |
| 119 | public function retrieve_model_info( $model ) { |
| 120 | $models = $this->get_models(); |
| 121 | foreach ( $models as $currentModel ) { |
| 122 | if ( $currentModel['model'] === $model ) { |
| 123 | return $currentModel; |
| 124 | } |
| 125 | } |
| 126 | return false; |
| 127 | } |
| 128 | |
| 129 | public function final_checks( Meow_MWAI_Query_Base $query ) { |
| 130 | $query->final_checks(); |
| 131 | //$found = false; |
| 132 | |
| 133 | // Check if the model is available, except if it's an assistant |
| 134 | if ( !( $query instanceof Meow_MWAI_Query_Assistant ) ) { |
| 135 | // TODO: Avoid checking on the finetuned models for now. |
| 136 | if ( substr( $query->model, 0, 3 ) === 'ft:' ) { |
| 137 | return; |
| 138 | } |
| 139 | $model_info = $this->retrieve_model_info( $query->model ); |
| 140 | if ( $model_info === false ) { |
| 141 | throw new Exception( "AI Engine: The model '{$query->model}' is not available." ); |
| 142 | } |
| 143 | if ( isset( $model_info['mode'] ) ) { |
| 144 | $query->mode = $model_info['mode']; |
| 145 | } |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | // Streamline the messages: |
| 150 | // - Concatenate consecutive model messages into a single message for the model role |
| 151 | // - Make sure the first message is a user message |
| 152 | // - Make sure the last message is a user message |
| 153 | protected function streamline_messages( $messages, $systemRole = 'assistant', $messageType = 'content' ) |
| 154 | { |
| 155 | $processedMessages = []; |
| 156 | $lastRole = ''; |
| 157 | $concatenatedText = ''; |
| 158 | |
| 159 | // Determine the way to access message content based on messageType |
| 160 | $getContent = function( $message ) use ( $messageType ) { |
| 161 | if ( $messageType == 'parts' ) { |
| 162 | return $message['parts'][0]['text']; |
| 163 | } |
| 164 | else { // Default to 'content' |
| 165 | return $message['content']; |
| 166 | } |
| 167 | }; |
| 168 | |
| 169 | // Set content to a message depending on the messageType |
| 170 | $setContent = function( &$message, $content ) use ( $messageType ) { |
| 171 | if ( $messageType == 'parts' ) { |
| 172 | $message['parts'] = [['text' => $content]]; |
| 173 | } |
| 174 | else { // Default to 'content' |
| 175 | $message['content'] = $content; |
| 176 | } |
| 177 | }; |
| 178 | |
| 179 | // Concatenate consecutive model messages into a single message for the model role |
| 180 | foreach ( $messages as $message ) { |
| 181 | if ( $message['role'] == $systemRole ) { |
| 182 | if ( $lastRole == $systemRole ) { |
| 183 | $concatenatedText .= "\n" . $getContent( $message ); |
| 184 | } |
| 185 | else { |
| 186 | if ( $concatenatedText !== '' ) { |
| 187 | $newMessage = [ 'role' => $systemRole ]; |
| 188 | $setContent( $newMessage, $concatenatedText ); |
| 189 | $processedMessages[] = $newMessage; |
| 190 | } |
| 191 | $concatenatedText = $getContent( $message ); |
| 192 | } |
| 193 | } |
| 194 | else { |
| 195 | if ( $lastRole == $systemRole ) { |
| 196 | $newMessage = [ 'role' => $systemRole ]; |
| 197 | $setContent( $newMessage, $concatenatedText ); |
| 198 | $processedMessages[] = $newMessage; |
| 199 | $concatenatedText = ''; |
| 200 | } |
| 201 | $processedMessages[] = $message; |
| 202 | } |
| 203 | $lastRole = $message['role']; |
| 204 | } |
| 205 | if ( $lastRole == $systemRole && $concatenatedText !== '' ) { |
| 206 | $newMessage = [ 'role' => $systemRole ]; |
| 207 | $setContent( $newMessage, $concatenatedText ); |
| 208 | $processedMessages[] = $newMessage; |
| 209 | } |
| 210 | |
| 211 | // Make sure the last message is a user message, if not, throw an exception |
| 212 | if ( end( $processedMessages )['role'] !== 'user' ) { |
| 213 | throw new Exception( 'The last message must be a user message.' ); |
| 214 | } |
| 215 | |
| 216 | // Make sure the first message is a user message, if not, add an empty user message |
| 217 | if ( $processedMessages[0]['role'] !== 'user' ) { |
| 218 | $newMessage = [ 'role' => 'user' ]; |
| 219 | $setContent( $newMessage, '' ); |
| 220 | array_unshift( $processedMessages, $newMessage ); |
| 221 | } |
| 222 | |
| 223 | return $processedMessages; |
| 224 | } |
| 225 | |
| 226 | // Check for a JSON-formatted error in the data, and throw an exception if it's the case. |
| 227 | function stream_error_check( $data ) { |
| 228 | if ( strpos( $data, 'error' ) === false ) { |
| 229 | return; |
| 230 | } |
| 231 | $data = trim( $data ); |
| 232 | $jsonPart = $data; |
| 233 | if ( strpos( $jsonPart, 'data:' ) === 0 ) { |
| 234 | $jsonPart = trim( substr( $jsonPart, strlen( 'data:' ) ) ); |
| 235 | } |
| 236 | $json = json_decode( $jsonPart, true ); |
| 237 | if ( json_last_error() === JSON_ERROR_NONE ) { |
| 238 | if ( isset( $json['error'] ) ) { |
| 239 | $error = $json['error']; |
| 240 | $code = null; |
| 241 | $type = null; |
| 242 | $message = null; |
| 243 | if ( isset( $error['message'] ) ) { |
| 244 | $message = $error['message']; |
| 245 | } |
| 246 | else if ( is_string( $error ) ) { |
| 247 | throw new Exception( "Error: $error" ); |
| 248 | } |
| 249 | else { |
| 250 | throw new Exception( "Unknown error (stream_error_check)." ); |
| 251 | } |
| 252 | if ( isset( $error['code'] ) ) { |
| 253 | $code = $error['code']; |
| 254 | } |
| 255 | if ( isset( $error['type'] ) ) { |
| 256 | $type = $error['type']; |
| 257 | } |
| 258 | $errorMessage = "Error: $message"; |
| 259 | if ( !is_null( $code ) ) { |
| 260 | $errorMessage .= " ($code)"; |
| 261 | } |
| 262 | if ( !is_null( $type ) ) { |
| 263 | $errorMessage .= " ($type)"; |
| 264 | } |
| 265 | throw new Exception( $errorMessage ); |
| 266 | } |
| 267 | else if ( isset( $json['type'] ) && $json['type'] === 'error' ) { |
| 268 | $type = $json['error']['type']; |
| 269 | $message = $json['error']['message']; |
| 270 | throw new Exception( "Error: $message ($type)" ); |
| 271 | } |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | public function stream_handler( $handle, $args, $url ) { |
| 276 | curl_setopt( $handle, CURLOPT_SSL_VERIFYPEER, false ); |
| 277 | curl_setopt( $handle, CURLOPT_SSL_VERIFYHOST, false ); |
| 278 | |
| 279 | // TODO: This is breaking the response. We need to find a way to handle the headers. |
| 280 | // curl_setopt( $handle, CURLOPT_HEADERFUNCTION, function ( $curl, $header ) { |
| 281 | // $length = strlen( $header ); |
| 282 | // $this->streamHeaders[] = $header; |
| 283 | // $this->stream_header_handler( $header ); |
| 284 | // return $length; |
| 285 | // }); |
| 286 | |
| 287 | curl_setopt( $handle, CURLOPT_WRITEFUNCTION, function ( $curl, $data ) { |
| 288 | $length = strlen( $data ); |
| 289 | |
| 290 | // Bufferize the unfinished stream (if it's the case) |
| 291 | $this->streamTemporaryBuffer .= $data; |
| 292 | $this->streamBuffer .= $data; |
| 293 | |
| 294 | // Error Management |
| 295 | $this->stream_error_check( $this->streamBuffer ); |
| 296 | |
| 297 | $lines = explode( "\n", $this->streamTemporaryBuffer ); |
| 298 | if ( substr( $this->streamTemporaryBuffer, -1 ) !== "\n" ) { |
| 299 | $this->streamTemporaryBuffer = array_pop( $lines ); |
| 300 | } |
| 301 | else { |
| 302 | $this->streamTemporaryBuffer = ""; |
| 303 | } |
| 304 | |
| 305 | foreach ( $lines as $line ) { |
| 306 | if ( $line === "" ) { continue; } |
| 307 | if ( strpos( $line, 'data:' ) === 0 ) { |
| 308 | $line = trim( substr( $line, 5 ) ); |
| 309 | $json = json_decode( trim( $line ), true ); |
| 310 | |
| 311 | if ( json_last_error() === JSON_ERROR_NONE ) { |
| 312 | $content = $this->stream_data_handler( $json ); |
| 313 | if ( !is_null( $content ) ) { |
| 314 | |
| 315 | // TO CHECK: Not sure why we need to do this to make sure there is a line return in the chatbot |
| 316 | // If we don't do this, HuggingFace streams "\n" as a token without anything else, and the |
| 317 | // chatbot doesn't display it. |
| 318 | if ( $content === "\n" ) { |
| 319 | $content = " \n"; |
| 320 | } |
| 321 | |
| 322 | $this->streamContent .= $content; |
| 323 | call_user_func( $this->streamCallback, $content ); |
| 324 | } |
| 325 | } |
| 326 | else if ( $line !== '[DONE]' && !empty( $line ) ) { |
| 327 | $this->streamTemporaryBuffer .= $line . "\n"; |
| 328 | } |
| 329 | } |
| 330 | } |
| 331 | return $length; |
| 332 | }); |
| 333 | } |
| 334 | |
| 335 | protected function stream_header_handler( $header ) { |
| 336 | |
| 337 | } |
| 338 | |
| 339 | protected function stream_data_handler( $json ) { |
| 340 | throw new Exception( 'Not implemented.' ); |
| 341 | } |
| 342 | |
| 343 | public function get_models() { |
| 344 | throw new Exception( 'Not implemented.' ); |
| 345 | } |
| 346 | |
| 347 | public function retrieve_models() { |
| 348 | throw new Exception( 'Not implemented.' ); |
| 349 | } |
| 350 | |
| 351 | public function run_completion_query( Meow_MWAI_Query_Base $query, $streamCallback = null ) : Meow_MWAI_Reply { |
| 352 | throw new Exception( 'Not implemented.' ); |
| 353 | } |
| 354 | |
| 355 | public function run_assistant_query( Meow_MWAI_Query_Assistant $query, $streamCallback = null ) : Meow_MWAI_Reply { |
| 356 | throw new Exception( 'Not implemented, or not supported in this version of AI Engine.' ); |
| 357 | } |
| 358 | |
| 359 | public function run_embedding_query( Meow_MWAI_Query_Base $query ) { |
| 360 | throw new Exception( 'Not implemented.' ); |
| 361 | } |
| 362 | |
| 363 | public function run_image_query( Meow_MWAI_Query_Base $query ) { |
| 364 | throw new Exception( 'Not implemented.' ); |
| 365 | } |
| 366 | |
| 367 | public function run_transcribe_query( Meow_MWAI_Query_Base $query ) { |
| 368 | throw new Exception( 'Not implemented.' ); |
| 369 | } |
| 370 | |
| 371 | public function get_price( Meow_MWAI_Query_Base $query, Meow_MWAI_Reply $reply ) { |
| 372 | throw new Exception( 'Not implemented.' ); |
| 373 | } |
| 374 | } |
| 375 |