data
11 months ago
engines
4 months ago
exceptions
11 months ago
modules
4 months ago
query
5 months ago
rest
4 months ago
services
6 months ago
admin.php
4 months ago
api.php
6 months ago
core.php
4 months ago
discussion.php
11 months ago
event.php
11 months ago
init.php
7 months ago
logging.php
11 months ago
reply.php
6 months ago
rest.php
5 months ago
reply.php
345 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Reply implements JsonSerializable { |
| 4 | public $id = null; |
| 5 | public $result = ''; |
| 6 | public $results = []; |
| 7 | public $usage = [ |
| 8 | 'prompt_tokens' => 0, |
| 9 | 'completion_tokens' => 0, |
| 10 | 'total_tokens' => 0, |
| 11 | 'price' => null, |
| 12 | 'accuracy' => 'none', // 'none', 'estimated', 'tokens', 'price', 'full' |
| 13 | ]; |
| 14 | // TODO: Remove after January 2026 - Use $usage['accuracy'] instead |
| 15 | public $usageAccuracy = 'none'; |
| 16 | public $query = null; |
| 17 | public $type = 'text'; |
| 18 | public $model = null; // Actual model used by the API (may differ from query model) |
| 19 | |
| 20 | // Code interpreter code (separate from main content) |
| 21 | public $contentCode = ''; |
| 22 | |
| 23 | // This is when models return a message that needs to be executed (functions, tools, etc) |
| 24 | public $needFeedbacks = []; |
| 25 | public $needClientActions = []; |
| 26 | |
| 27 | public function __construct( $query = null ) { |
| 28 | $this->query = $query; |
| 29 | } |
| 30 | |
| 31 | #[\ReturnTypeWillChange] |
| 32 | public function jsonSerialize() { |
| 33 | $isEmbedding = false; |
| 34 | $embeddingsDimensions = null; |
| 35 | $embedddingsMessage = null; |
| 36 | if ( is_array( $this->results ) && count( $this->results ) > 0 ) { |
| 37 | $isEmbedding = is_array( $this->results[0] ); |
| 38 | if ( $isEmbedding ) { |
| 39 | $embeddingsDimensions = count( $this->results[0] ); |
| 40 | $embedddingsMessage = "A $embeddingsDimensions-dimensional embedding was returned."; |
| 41 | } |
| 42 | } |
| 43 | $data = [ |
| 44 | 'result' => $isEmbedding ? $embedddingsMessage : $this->result, |
| 45 | 'results' => $isEmbedding ? [] : $this->results, |
| 46 | 'usage' => $this->usage, |
| 47 | 'system' => [ |
| 48 | 'class' => get_class( $this ), |
| 49 | ] |
| 50 | ]; |
| 51 | if ( !empty( $this->needFeedbacks ) ) { |
| 52 | $data['needFeedbacks'] = $this->needFeedbacks; |
| 53 | } |
| 54 | if ( !empty( $this->needClientActions ) ) { |
| 55 | $data['needClientActions'] = $this->needClientActions; |
| 56 | } |
| 57 | if ( !empty( $this->contentCode ) ) { |
| 58 | $data['contentCode'] = $this->contentCode; |
| 59 | } |
| 60 | return $data; |
| 61 | } |
| 62 | |
| 63 | public function set_usage( $usage ) { |
| 64 | $this->usage = $usage; |
| 65 | } |
| 66 | |
| 67 | public function set_usage_accuracy( $accuracy ) { |
| 68 | $this->usageAccuracy = $accuracy; |
| 69 | $this->usage['accuracy'] = $accuracy; |
| 70 | } |
| 71 | |
| 72 | public function set_id( $id ) { |
| 73 | $this->id = $id; |
| 74 | } |
| 75 | |
| 76 | public function set_type( $type ) { |
| 77 | $this->type = $type; |
| 78 | } |
| 79 | |
| 80 | public function set_model( $model ) { |
| 81 | $this->model = $model; |
| 82 | } |
| 83 | |
| 84 | public function get_total_tokens() { |
| 85 | return isset( $this->usage['total_tokens'] ) ? $this->usage['total_tokens'] : 0; |
| 86 | } |
| 87 | |
| 88 | public function get_in_tokens( $query = null ) { |
| 89 | $in_tokens = isset( $this->usage['prompt_tokens'] ) ? $this->usage['prompt_tokens'] : 0; |
| 90 | if ( empty( $in_tokens ) && $query ) { |
| 91 | $in_tokens = $query->get_in_tokens(); |
| 92 | } |
| 93 | return $in_tokens; |
| 94 | } |
| 95 | |
| 96 | public function get_out_tokens() { |
| 97 | $out_tokens = isset( $this->usage['completion_tokens'] ) ? $this->usage['completion_tokens'] : 0; |
| 98 | if ( empty( $out_tokens ) ) { |
| 99 | $out_tokens = Meow_MWAI_Core::estimate_tokens( $this->result ); |
| 100 | } |
| 101 | return $out_tokens; |
| 102 | } |
| 103 | |
| 104 | public function get_price() { |
| 105 | // If it's not set return null, but it can be 0 |
| 106 | if ( !isset( $this->usage['price'] ) ) { |
| 107 | return null; |
| 108 | } |
| 109 | return $this->usage['price']; |
| 110 | } |
| 111 | |
| 112 | public function get_usage_accuracy() { |
| 113 | return $this->usageAccuracy; |
| 114 | } |
| 115 | |
| 116 | public function get_units() { |
| 117 | if ( isset( $this->usage['total_tokens'] ) ) { |
| 118 | return $this->usage['total_tokens']; |
| 119 | } |
| 120 | else if ( isset( $this->usage['images'] ) ) { |
| 121 | return $this->usage['images']; |
| 122 | } |
| 123 | else if ( isset( $this->usage['seconds'] ) ) { |
| 124 | return $this->usage['seconds']; |
| 125 | } |
| 126 | return null; |
| 127 | } |
| 128 | |
| 129 | public function get_type() { |
| 130 | return $this->type; |
| 131 | } |
| 132 | |
| 133 | public function set_reply( $reply ) { |
| 134 | $this->result = $reply; |
| 135 | $this->results[] = [ $reply ]; |
| 136 | } |
| 137 | |
| 138 | public function replace( $search, $replace ) { |
| 139 | $this->result = str_replace( $search, $replace, $this->result ); |
| 140 | $this->results = array_map( function ( $result ) use ( $search, $replace ) { |
| 141 | return str_replace( $search, $replace, $result ); |
| 142 | }, $this->results ); |
| 143 | } |
| 144 | |
| 145 | private function extract_arguments( $funcArgs ) { |
| 146 | $finalArgs = []; |
| 147 | if ( is_string( $funcArgs ) ) { |
| 148 | $arguments = trim( str_replace( "\n", '', $funcArgs ) ); |
| 149 | if ( substr( $arguments, 0, 1 ) == '{' ) { |
| 150 | $arguments = json_decode( $arguments, true ); |
| 151 | $finalArgs = $arguments; |
| 152 | } |
| 153 | } |
| 154 | else if ( is_array( $funcArgs ) ) { |
| 155 | $finalArgs = $funcArgs; |
| 156 | } |
| 157 | return $finalArgs; |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * Set the choices from OpenAI as the results. |
| 162 | * The last (or only) result is set as the result. |
| 163 | * @param array $choices ID of the model to use. |
| 164 | */ |
| 165 | public function set_choices( $choices, $rawMessage = null ) { |
| 166 | $this->results = []; |
| 167 | |
| 168 | // Initialize feedback arrays at the start to accumulate across all choices |
| 169 | // This is important for engines like Google that split multiple function calls |
| 170 | // into separate choices |
| 171 | $this->needFeedbacks = []; |
| 172 | $this->needClientActions = []; |
| 173 | |
| 174 | if ( is_array( $choices ) ) { |
| 175 | foreach ( $choices as $choice ) { |
| 176 | |
| 177 | // It's chat completion |
| 178 | if ( isset( $choice['message'] ) ) { |
| 179 | |
| 180 | // It's text content |
| 181 | if ( isset( $choice['message']['content'] ) ) { |
| 182 | $content = trim( $choice['message']['content'] ); |
| 183 | $this->results[] = $content; |
| 184 | $this->result = $content; |
| 185 | } |
| 186 | |
| 187 | // It's a tool call (OpenAI-style and Anthropic-style) |
| 188 | $toolCalls = []; |
| 189 | if ( isset( $choice['message']['tool_calls'] ) ) { |
| 190 | $tools = $choice['message']['tool_calls']; |
| 191 | foreach ( $tools as $tool ) { |
| 192 | if ( $tool['type'] === 'function' ) { |
| 193 | $toolCall = [ |
| 194 | 'toolId' => $tool['id'], |
| 195 | //'mode' => 'interactive', |
| 196 | 'type' => 'tool_call', |
| 197 | 'name' => trim( $tool['function']['name'] ), |
| 198 | 'arguments' => $this->extract_arguments( $tool['function']['arguments'] ), |
| 199 | // Represent the original message that triggered the function call |
| 200 | 'rawMessage' => $rawMessage ? $rawMessage : ( isset( $choice['_rawMessage'] ) ? $choice['_rawMessage'] : $choice['message'] ), |
| 201 | ]; |
| 202 | $toolCalls[] = $toolCall; |
| 203 | } |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | // If it's a function call (Open-AI style; usually for a final execution) |
| 208 | if ( isset( $choice['message']['function_call'] ) ) { |
| 209 | $content = $choice['message']['function_call']; |
| 210 | $name = trim( $content['name'] ); |
| 211 | $args = $content['arguments'] ?? $content['args'] ?? null; |
| 212 | $toolCalls[] = [ |
| 213 | 'toolId' => null, |
| 214 | 'mode' => 'static', |
| 215 | 'type' => 'function_call', |
| 216 | 'name' => $name, |
| 217 | 'arguments' => $this->extract_arguments( $args ), |
| 218 | 'rawMessage' => $rawMessage ? $rawMessage : ( isset( $choice['_rawMessage'] ) ? $choice['_rawMessage'] : $choice['message'] ), |
| 219 | ]; |
| 220 | } |
| 221 | |
| 222 | // Deep copy tool calls BEFORE adding function references |
| 223 | // This prevents the "Duplicate value for 'tool_call_id'" error |
| 224 | // when the same function is called multiple times |
| 225 | // Note: We need to preserve the toolId for each tool call |
| 226 | if ( !empty( $toolCalls ) ) { |
| 227 | $toolCalls = json_decode( json_encode( $toolCalls ), true ); |
| 228 | } |
| 229 | |
| 230 | // Resolve the original function from the query |
| 231 | if ( !empty( $toolCalls ) ) { |
| 232 | foreach ( $toolCalls as &$toolCall ) { |
| 233 | if ( $toolCall['type'] !== 'function_call' && $toolCall['type'] !== 'tool_call' ) { |
| 234 | continue; |
| 235 | } |
| 236 | foreach ( $this->query->functions as $function ) { |
| 237 | if ( $function->name == $toolCall['name'] ) { |
| 238 | $toolCall['function'] = $function; |
| 239 | break; |
| 240 | } |
| 241 | } |
| 242 | } |
| 243 | // IMPORTANT: Unset the reference to avoid PHP's foreach reference bug |
| 244 | unset( $toolCall ); |
| 245 | } |
| 246 | |
| 247 | // Add tool calls to existing arrays instead of resetting them |
| 248 | // This is crucial for engines like Google that create multiple choices |
| 249 | // for multiple function calls in a single response |
| 250 | foreach ( $toolCalls as $tcIdx => $toolCall ) { |
| 251 | if ( $toolCall['function']->target !== 'js' ) { |
| 252 | $this->needFeedbacks[] = $toolCall; |
| 253 | } |
| 254 | else if ( $toolCall['function']->target === 'js' ) { |
| 255 | $this->needClientActions[] = $toolCall; |
| 256 | } |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | // It's text completion |
| 261 | else if ( isset( $choice['text'] ) ) { |
| 262 | |
| 263 | // TODO: Assistants return an array (so actually not really a text completion) |
| 264 | // We should probably make this clearer and analyze all the outputs from different endpoints. |
| 265 | if ( is_array( $choice['text'] ) ) { |
| 266 | $text = trim( $choice['text']['value'] ); |
| 267 | $this->results[] = $text; |
| 268 | $this->result = $text; |
| 269 | } |
| 270 | else { |
| 271 | $text = trim( $choice['text'] ); |
| 272 | $this->results[] = $text; |
| 273 | $this->result = $text; |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | // It's url/image |
| 278 | else if ( isset( $choice['url'] ) ) { |
| 279 | // TODO: DALL-E 2 and 3 were using URLs, but now they are using b64_json (gpt-image-1 kind of enforced it) |
| 280 | $url = trim( $choice['url'] ); |
| 281 | $this->results[] = $url; |
| 282 | $this->result = $url; |
| 283 | } |
| 284 | else if ( isset( $choice['b64_json'] ) ) { |
| 285 | // In that case we need to create a temporary file in WordPress to store the image, and return the URL for it. |
| 286 | global $mwai_core; |
| 287 | |
| 288 | // Check if the query has explicitly disabled local download |
| 289 | if ( !empty( $this->query ) && $this->query instanceof Meow_MWAI_Query_Image && $this->query->localDownload === null ) { |
| 290 | // Query explicitly doesn't want local download, save as temporary upload |
| 291 | $localDownload = 'uploads'; |
| 292 | $expiry = 1 * HOUR_IN_SECONDS; // 1 hour for temporary images |
| 293 | } |
| 294 | else { |
| 295 | // Use the user's AI-generated image settings (same as DALL-E uses) |
| 296 | $localDownload = $mwai_core->get_option( 'image_local_download' ); |
| 297 | $expiry = (int) $mwai_core->get_option( 'image_expires_download' ); |
| 298 | } |
| 299 | |
| 300 | // The expiry is already in seconds |
| 301 | $ttl = $expiry; |
| 302 | |
| 303 | // Use 'library' or 'uploads' based on user settings |
| 304 | $target = ( $localDownload === 'library' ) ? 'library' : 'uploads'; |
| 305 | |
| 306 | // Prepare metadata similar to regular image queries |
| 307 | $metadata = []; |
| 308 | if ( !empty( $this->query ) ) { |
| 309 | $metadata['query_envId'] = $this->query->envId ?? null; |
| 310 | $metadata['query_session'] = $this->query->session ?? null; |
| 311 | $metadata['query_model'] = $this->query->model ?? 'gpt-image-1'; |
| 312 | } |
| 313 | |
| 314 | $url = $mwai_core->files->save_temp_image_from_b64( $choice['b64_json'], 'generated', $ttl, $target, $metadata ); |
| 315 | if ( is_wp_error( $url ) ) { |
| 316 | return $url; |
| 317 | } |
| 318 | $this->results[] = $url; |
| 319 | |
| 320 | // For chatbot display, append image markdown to the result |
| 321 | if ( !empty( $this->result ) ) { |
| 322 | $this->result .= "\n\n"; |
| 323 | } |
| 324 | $this->result .= ""; |
| 325 | } |
| 326 | |
| 327 | // It's embedding |
| 328 | else if ( isset( $choice['embedding'] ) ) { |
| 329 | $content = $choice['embedding']; |
| 330 | $this->results[] = $content; |
| 331 | $this->result = $content; |
| 332 | } |
| 333 | } |
| 334 | } |
| 335 | else { |
| 336 | $this->result = $choices; |
| 337 | $this->results[] = $choices; |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | public function toJson() { |
| 342 | return json_encode( $this ); |
| 343 | } |
| 344 | } |
| 345 |