engines
1 year ago
modules
1 year ago
queries
1 year ago
admin.php
2 years ago
api.php
1 year ago
core.php
1 year ago
discussion.php
1 year ago
init.php
2 years ago
logging.php
1 year ago
reply.php
1 year ago
rest.php
1 year ago
reply.php
265 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 | ]; |
| 13 | public $query = null; |
| 14 | public $type = 'text'; |
| 15 | |
| 16 | // This is when models return a message that needs to be executed (functions, tools, etc) |
| 17 | public $needFeedbacks = []; |
| 18 | public $needClientActions = []; |
| 19 | |
| 20 | public function __construct( $query = null ) { |
| 21 | $this->query = $query; |
| 22 | } |
| 23 | |
| 24 | #[\ReturnTypeWillChange] |
| 25 | public function jsonSerialize() { |
| 26 | $isEmbedding = false; |
| 27 | $embeddingsDimensions = null; |
| 28 | $embedddingsMessage = null; |
| 29 | if ( is_array( $this->results ) && count( $this->results ) > 0 ) { |
| 30 | $isEmbedding = is_array( $this->results[0] ); |
| 31 | if ( $isEmbedding ) { |
| 32 | $embeddingsDimensions = count( $this->results[0] ); |
| 33 | $embedddingsMessage = "A $embeddingsDimensions-dimensional embedding was returned."; |
| 34 | } |
| 35 | } |
| 36 | $data = [ |
| 37 | 'result' => $isEmbedding ? $embedddingsMessage : $this->result, |
| 38 | 'results' => $isEmbedding ? [] : $this->results, |
| 39 | 'usage' => $this->usage, |
| 40 | 'system' => [ |
| 41 | 'class' => get_class( $this ), |
| 42 | ] |
| 43 | ]; |
| 44 | if ( !empty( $this->needFeedbacks ) ) { |
| 45 | $data['needFeedbacks'] = $this->needFeedbacks; |
| 46 | } |
| 47 | if ( !empty( $this->needClientActions ) ) { |
| 48 | $data['needClientActions'] = $this->needClientActions; |
| 49 | } |
| 50 | return $data; |
| 51 | } |
| 52 | |
| 53 | public function set_usage( $usage ) { |
| 54 | $this->usage = $usage; |
| 55 | } |
| 56 | |
| 57 | public function set_id( $id ) { |
| 58 | $this->id = $id; |
| 59 | } |
| 60 | |
| 61 | public function set_type( $type ) { |
| 62 | $this->type = $type; |
| 63 | } |
| 64 | |
| 65 | public function get_total_tokens() { |
| 66 | return $this->usage['total_tokens']; |
| 67 | } |
| 68 | |
| 69 | public function get_in_tokens( $query = null ) { |
| 70 | $in_tokens = $this->usage['prompt_tokens']; |
| 71 | if ( empty( $in_tokens ) && $query ) { |
| 72 | $in_tokens = $query->get_in_tokens(); |
| 73 | } |
| 74 | return $in_tokens; |
| 75 | } |
| 76 | |
| 77 | public function get_out_tokens() { |
| 78 | $out_tokens = $this->usage['completion_tokens']; |
| 79 | if ( empty( $out_tokens ) ) { |
| 80 | $out_tokens = Meow_MWAI_Core::estimate_tokens( $this->result ); |
| 81 | } |
| 82 | return $out_tokens; |
| 83 | } |
| 84 | |
| 85 | public function get_price() { |
| 86 | // If it's not set return null, but it can be 0 |
| 87 | if ( !isset( $this->usage['price'] ) ) { |
| 88 | return null; |
| 89 | } |
| 90 | return $this->usage['price']; |
| 91 | } |
| 92 | |
| 93 | public function get_units() { |
| 94 | if ( isset( $this->usage['total_tokens'] ) ) { |
| 95 | return $this->usage['total_tokens']; |
| 96 | } |
| 97 | else if ( isset( $this->usage['images'] ) ) { |
| 98 | return $this->usage['images']; |
| 99 | } |
| 100 | else if ( isset( $this->usage['seconds'] ) ) { |
| 101 | return $this->usage['seconds']; |
| 102 | } |
| 103 | return null; |
| 104 | } |
| 105 | |
| 106 | public function get_type() { |
| 107 | return $this->type; |
| 108 | } |
| 109 | |
| 110 | public function set_reply( $reply ) { |
| 111 | $this->result = $reply; |
| 112 | $this->results[] = [ $reply ]; |
| 113 | } |
| 114 | |
| 115 | public function replace( $search, $replace ) { |
| 116 | $this->result = str_replace( $search, $replace, $this->result ); |
| 117 | $this->results = array_map( function( $result ) use ( $search, $replace ) { |
| 118 | return str_replace( $search, $replace, $result ); |
| 119 | }, $this->results ); |
| 120 | } |
| 121 | |
| 122 | private function extract_arguments( $funcArgs ) { |
| 123 | $finalArgs = []; |
| 124 | if ( is_string( $funcArgs ) ) { |
| 125 | $arguments = trim( str_replace( "\n", "", $funcArgs ) ); |
| 126 | if ( substr( $arguments, 0, 1 ) == '{' ) { |
| 127 | $arguments = json_decode( $arguments, true ); |
| 128 | $finalArgs = $arguments; |
| 129 | } |
| 130 | } |
| 131 | else if ( is_array( $funcArgs ) ) { |
| 132 | $finalArgs = $funcArgs; |
| 133 | } |
| 134 | return $finalArgs; |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * Set the choices from OpenAI as the results. |
| 139 | * The last (or only) result is set as the result. |
| 140 | * @param array $choices ID of the model to use. |
| 141 | */ |
| 142 | public function set_choices( $choices, $rawMessage = null) { |
| 143 | $this->results = []; |
| 144 | if ( is_array( $choices ) ) { |
| 145 | foreach ( $choices as $choice ) { |
| 146 | |
| 147 | // It's chat completion |
| 148 | if ( isset( $choice['message'] ) ) { |
| 149 | |
| 150 | // It's text content |
| 151 | if ( isset( $choice['message']['content'] ) ) { |
| 152 | $content = trim( $choice['message']['content'] ); |
| 153 | $this->results[] = $content; |
| 154 | $this->result = $content; |
| 155 | } |
| 156 | |
| 157 | // It's a tool call (OpenAI-style and Anthropic-style) |
| 158 | $toolCalls = []; |
| 159 | if ( isset( $choice['message']['tool_calls'] ) ) { |
| 160 | $tools = $choice['message']['tool_calls']; |
| 161 | foreach ( $tools as $tool ) { |
| 162 | if ( $tool['type'] === 'function' ) { |
| 163 | $toolCalls[] = [ |
| 164 | 'toolId' => $tool['id'], |
| 165 | //'mode' => 'interactive', |
| 166 | 'type' => 'tool_call', |
| 167 | 'name' => trim( $tool['function']['name'] ), |
| 168 | 'arguments' => $this->extract_arguments( $tool['function']['arguments'] ), |
| 169 | // Represent the original message that triggered the function call |
| 170 | 'rawMessage' => $rawMessage ? $rawMessage : $choice['message'], |
| 171 | ]; |
| 172 | } |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | // If it's a function call (Open-AI style; usually for a final execution) |
| 177 | if ( isset( $choice['message']['function_call'] ) ) { |
| 178 | $content = $choice['message']['function_call']; |
| 179 | $toolCalls[] = [ |
| 180 | 'toolId' => null, |
| 181 | 'mode' => 'static', |
| 182 | 'type' => 'function_call', |
| 183 | 'name' => trim( $choice['message']['function_call']['name'] ), |
| 184 | 'arguments' => $this->extract_arguments( $tool['message']['function_call']['arguments'] ), |
| 185 | 'rawMessage' => $rawMessage ? $rawMessage : $choice['message'], |
| 186 | ]; |
| 187 | } |
| 188 | |
| 189 | // Resolve the original function from the query |
| 190 | if ( !empty( $toolCalls ) ) { |
| 191 | foreach ( $toolCalls as &$toolCall ) { |
| 192 | if ( $toolCall['type'] !== 'function_call' && $toolCall['type'] !== 'tool_call' ) { |
| 193 | continue; |
| 194 | } |
| 195 | foreach ( $this->query->functions as $function ) { |
| 196 | if ( $function->name == $toolCall['name'] ) { |
| 197 | $toolCall['function'] = $function; |
| 198 | break; |
| 199 | } |
| 200 | } |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | // NOTE: Anaheim proposed that fix to avoid the error "Duplicate value for 'tool_call_id'" |
| 205 | // This happens when the same function is called twice; we need to investigate. |
| 206 | $toolCallsDeepCopy = array_map( function( $toolCall ) { |
| 207 | return is_array( $toolCall ) ? array_merge( [], $toolCall ) : $toolCall; |
| 208 | }, $toolCalls); |
| 209 | $toolCalls = $toolCallsDeepCopy; |
| 210 | |
| 211 | // Let's separate the Feedbacks (PHP code) and Client Actions (JS code) |
| 212 | $this->needFeedbacks = []; |
| 213 | $this->needClientActions = []; |
| 214 | foreach ( $toolCalls as $toolCall ) { |
| 215 | if ( $toolCall['function']->target !== 'js' ) { |
| 216 | $this->needFeedbacks[] = $toolCall; |
| 217 | } |
| 218 | else if ( $toolCall['function']->target === 'js' ) { |
| 219 | $this->needClientActions[] = $toolCall; |
| 220 | } |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | // It's text completion |
| 225 | else if ( isset( $choice['text'] ) ) { |
| 226 | |
| 227 | // TODO: Assistants return an array (so actually not really a text completion) |
| 228 | // We should probably make this clearer and analyze all the outputs from different endpoints. |
| 229 | if ( is_array( $choice['text'] ) ) { |
| 230 | $text = trim( $choice['text']['value'] ); |
| 231 | $this->results[] = $text; |
| 232 | $this->result = $text; |
| 233 | } |
| 234 | else { |
| 235 | $text = trim( $choice['text'] ); |
| 236 | $this->results[] = $text; |
| 237 | $this->result = $text; |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | // It's url/image |
| 242 | else if ( isset( $choice['url'] ) ) { |
| 243 | $url = trim( $choice['url'] ); |
| 244 | $this->results[] = $url; |
| 245 | $this->result = $url; |
| 246 | } |
| 247 | |
| 248 | // It's embedding |
| 249 | else if ( isset( $choice['embedding'] ) ) { |
| 250 | $content = $choice['embedding']; |
| 251 | $this->results[] = $content; |
| 252 | $this->result = $content; |
| 253 | } |
| 254 | } |
| 255 | } |
| 256 | else { |
| 257 | $this->result = $choices; |
| 258 | $this->results[] = $choices; |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | public function toJson() { |
| 263 | return json_encode( $this ); |
| 264 | } |
| 265 | } |