anthropic.php
8 months ago
chatml.php
7 months ago
core.php
7 months ago
factory.php
8 months ago
google.php
7 months ago
mistral.php
9 months ago
open-router.php
7 months ago
openai.php
7 months ago
perplexity.php
10 months ago
replicate.php
7 months ago
open-router.php
355 lines
| 1 | <?php |
| 2 | |
| 3 | // If this isn't defined elsewhere, set it here by default. You can override |
| 4 | // it in your theme's functions.php or your main wp-config.php. If set to true, |
| 5 | // additional time will be spent fetching exact pricing info from OpenRouter |
| 6 | // after each query, resulting in more accurate but potentially slower responses. |
| 7 | if ( !defined( 'MWAI_OPENROUTER_ACCURATE_PRICING' ) ) { |
| 8 | define( 'MWAI_OPENROUTER_ACCURATE_PRICING', false ); |
| 9 | } |
| 10 | |
| 11 | class Meow_MWAI_Engines_OpenRouter extends Meow_MWAI_Engines_ChatML { |
| 12 | /** |
| 13 | * Keep a static dictionary (query -> price) so that if we see the same query |
| 14 | * again in another instance, we can immediately return the stored price |
| 15 | * instead of recomputing. |
| 16 | * @var array |
| 17 | */ |
| 18 | private static $accuratePrices = []; |
| 19 | |
| 20 | public function __construct( $core, $env ) { |
| 21 | parent::__construct( $core, $env ); |
| 22 | } |
| 23 | |
| 24 | protected function set_environment() { |
| 25 | $env = $this->env; |
| 26 | $this->apiKey = $env['apikey']; |
| 27 | } |
| 28 | |
| 29 | protected function build_url( $query, $endpoint = null ) { |
| 30 | $endpoint = apply_filters( 'mwai_openrouter_endpoint', 'https://openrouter.ai/api/v1', $this->env ); |
| 31 | return parent::build_url( $query, $endpoint ); |
| 32 | } |
| 33 | |
| 34 | protected function build_headers( $query ) { |
| 35 | $site_url = apply_filters( 'mwai_openrouter_site_url', get_site_url(), $query ); |
| 36 | $site_name = apply_filters( 'mwai_openrouter_site_name', get_bloginfo( 'name' ), $query ); |
| 37 | if ( $query->apiKey ) { |
| 38 | $this->apiKey = $query->apiKey; |
| 39 | } |
| 40 | if ( empty( $this->apiKey ) ) { |
| 41 | throw new Exception( 'No API Key provided. Please visit the Settings. (OpenRouter Engine)' ); |
| 42 | } |
| 43 | return [ |
| 44 | 'Content-Type' => 'application/json', |
| 45 | 'Authorization' => 'Bearer ' . $this->apiKey, |
| 46 | 'HTTP-Referer' => $site_url, |
| 47 | 'X-Title' => $site_name, |
| 48 | 'User-Agent' => 'AI Engine', |
| 49 | ]; |
| 50 | } |
| 51 | |
| 52 | protected function build_body( $query, $streamCallback = null, $extra = null ) { |
| 53 | $body = parent::build_body( $query, $streamCallback, $extra ); |
| 54 | // Use transforms from OpenRouter docs |
| 55 | $body['transforms'] = ['middle-out']; |
| 56 | $body['usage'] = [ 'include' => true ]; |
| 57 | return $body; |
| 58 | } |
| 59 | |
| 60 | protected function get_service_name() { |
| 61 | return 'OpenRouter'; |
| 62 | } |
| 63 | |
| 64 | public function get_models() { |
| 65 | return $this->core->get_engine_models( 'openrouter' ); |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Requests usage data if streaming was used and the usage is incomplete. |
| 70 | */ |
| 71 | public function handle_tokens_usage( |
| 72 | $reply, |
| 73 | $query, |
| 74 | $returned_model, |
| 75 | $returned_in_tokens, |
| 76 | $returned_out_tokens, |
| 77 | $returned_price = null |
| 78 | ) { |
| 79 | // If streaming is not enabled, we might already have all usage data |
| 80 | $everything_is_set = !is_null( $returned_model ) |
| 81 | && !is_null( $returned_in_tokens ) |
| 82 | && !is_null( $returned_out_tokens ); |
| 83 | |
| 84 | // Clean up the data |
| 85 | $returned_in_tokens = $returned_in_tokens ?? $reply->get_in_tokens( $query ); |
| 86 | $returned_out_tokens = $returned_out_tokens ?? $reply->get_out_tokens(); |
| 87 | $returned_price = $returned_price ?? $reply->get_price(); |
| 88 | |
| 89 | // Record the usage in the database |
| 90 | $usage = $this->core->record_tokens_usage( |
| 91 | $returned_model, |
| 92 | $returned_in_tokens, |
| 93 | $returned_out_tokens, |
| 94 | $returned_price |
| 95 | ); |
| 96 | |
| 97 | // Set the usage back on the reply |
| 98 | $reply->set_usage( $usage ); |
| 99 | |
| 100 | // Set accuracy based on data availability |
| 101 | if ( !is_null( $returned_price ) && !is_null( $returned_in_tokens ) && !is_null( $returned_out_tokens ) ) { |
| 102 | // OpenRouter returns price from API = full accuracy |
| 103 | $reply->set_usage_accuracy( 'full' ); |
| 104 | } |
| 105 | elseif ( !is_null( $returned_in_tokens ) && !is_null( $returned_out_tokens ) ) { |
| 106 | // Tokens from API but price calculated = tokens accuracy |
| 107 | $reply->set_usage_accuracy( 'tokens' ); |
| 108 | } |
| 109 | else { |
| 110 | // Everything estimated |
| 111 | $reply->set_usage_accuracy( 'estimated' ); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | public function get_price( Meow_MWAI_Query_Base $query, Meow_MWAI_Reply $reply ) { |
| 116 | $price = $reply->get_price(); |
| 117 | return is_null( $price ) ? parent::get_price( $query, $reply ) : $price; |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Retrieve the models from OpenRouter, adding tags/features accordingly. |
| 122 | */ |
| 123 | public function retrieve_models() { |
| 124 | |
| 125 | // 1. Get the list of models supporting "tools" |
| 126 | $toolsModels = $this->get_supported_models( 'tools' ); |
| 127 | |
| 128 | // 2. Retrieve the full list of chat models |
| 129 | $url = 'https://openrouter.ai/api/v1/models'; |
| 130 | $response = wp_remote_get( $url ); |
| 131 | if ( is_wp_error( $response ) ) { |
| 132 | throw new Exception( 'AI Engine: ' . $response->get_error_message() ); |
| 133 | } |
| 134 | $body = json_decode( $response['body'], true ); |
| 135 | if ( !isset( $body['data'] ) || !is_array( $body['data'] ) ) { |
| 136 | throw new Exception( 'AI Engine: Invalid response for the list of models.' ); |
| 137 | } |
| 138 | |
| 139 | $models = []; |
| 140 | foreach ( $body['data'] as $model ) { |
| 141 | $models[] = $this->build_model_entry( $model, $toolsModels ); |
| 142 | } |
| 143 | |
| 144 | // 3. Retrieve embedding models |
| 145 | $embeddingsUrl = 'https://openrouter.ai/api/v1/embeddings/models'; |
| 146 | $embeddingsResponse = wp_remote_get( $embeddingsUrl ); |
| 147 | if ( !is_wp_error( $embeddingsResponse ) ) { |
| 148 | $embeddingsBody = json_decode( $embeddingsResponse['body'], true ); |
| 149 | if ( isset( $embeddingsBody['data'] ) && is_array( $embeddingsBody['data'] ) ) { |
| 150 | foreach ( $embeddingsBody['data'] as $model ) { |
| 151 | $models[] = $this->build_model_entry( $model, [], true ); |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | return $models; |
| 157 | } |
| 158 | |
| 159 | /** |
| 160 | * Build a model entry from OpenRouter API data. |
| 161 | */ |
| 162 | private function build_model_entry( $model, $toolsModels = [], $isEmbedding = false ) { |
| 163 | // Basic defaults |
| 164 | $family = 'n/a'; |
| 165 | $maxCompletionTokens = 4096; |
| 166 | $maxContextualTokens = 8096; |
| 167 | $priceIn = 0; |
| 168 | $priceOut = 0; |
| 169 | |
| 170 | // Family from model ID (e.g. "openai/gpt-4/32k" -> "openai") |
| 171 | if ( isset( $model['id'] ) ) { |
| 172 | $parts = explode( '/', $model['id'] ); |
| 173 | $family = $parts[0] ?? 'n/a'; |
| 174 | } |
| 175 | |
| 176 | // maxCompletionTokens |
| 177 | if ( isset( $model['top_provider']['max_completion_tokens'] ) ) { |
| 178 | $maxCompletionTokens = (int) $model['top_provider']['max_completion_tokens']; |
| 179 | } |
| 180 | |
| 181 | // maxContextualTokens |
| 182 | if ( isset( $model['context_length'] ) ) { |
| 183 | $maxContextualTokens = (int) $model['context_length']; |
| 184 | } |
| 185 | |
| 186 | // Pricing |
| 187 | if ( isset( $model['pricing']['prompt'] ) && $model['pricing']['prompt'] > 0 ) { |
| 188 | $priceIn = $this->truncate_float( floatval( $model['pricing']['prompt'] ) * 1000 ); |
| 189 | } |
| 190 | if ( isset( $model['pricing']['completion'] ) && $model['pricing']['completion'] > 0 ) { |
| 191 | $priceOut = $this->truncate_float( floatval( $model['pricing']['completion'] ) * 1000 ); |
| 192 | } |
| 193 | |
| 194 | // Handle embedding models |
| 195 | if ( $isEmbedding ) { |
| 196 | $features = [ 'embeddings' ]; |
| 197 | $tags = [ 'core', 'embedding' ]; |
| 198 | |
| 199 | // Try to extract dimensions from description |
| 200 | $dimensions = null; |
| 201 | if ( isset( $model['description'] ) && preg_match( '/(\d+)-dimensional/', $model['description'], $matches ) ) { |
| 202 | $dimensions = (int) $matches[1]; |
| 203 | } |
| 204 | |
| 205 | $entry = [ |
| 206 | 'model' => $model['id'] ?? '', |
| 207 | 'name' => trim( $model['name'] ?? '' ), |
| 208 | 'family' => $family, |
| 209 | 'features' => $features, |
| 210 | 'price' => [ |
| 211 | 'in' => $priceIn, |
| 212 | 'out' => $priceOut, |
| 213 | ], |
| 214 | 'type' => 'token', |
| 215 | 'unit' => 1 / 1000, |
| 216 | 'maxContextualTokens' => $maxContextualTokens, |
| 217 | 'tags' => $tags, |
| 218 | ]; |
| 219 | |
| 220 | if ( $dimensions ) { |
| 221 | $entry['dimensions'] = $dimensions; |
| 222 | } |
| 223 | |
| 224 | return $entry; |
| 225 | } |
| 226 | |
| 227 | // Basic features and tags for chat models |
| 228 | $features = [ 'completion' ]; |
| 229 | $tags = [ 'core', 'chat' ]; |
| 230 | |
| 231 | // If the name contains (beta), (alpha) or (preview), add 'preview' tag and remove from name |
| 232 | if ( preg_match( '/\((beta|alpha|preview)\)/i', $model['name'] ) ) { |
| 233 | $tags[] = 'preview'; |
| 234 | $model['name'] = preg_replace( '/\((beta|alpha|preview)\)/i', '', $model['name'] ); |
| 235 | } |
| 236 | |
| 237 | // If model supports tools |
| 238 | if ( in_array( $model['id'], $toolsModels, true ) ) { |
| 239 | $tags[] = 'functions'; |
| 240 | $features[] = 'functions'; |
| 241 | } |
| 242 | |
| 243 | // Check if the model supports "vision" (if "image" is in the left side of the arrow) |
| 244 | // e.g. "text+image->text" or "image->text" |
| 245 | $modality = $model['architecture']['modality'] ?? ''; |
| 246 | $modality_lc = strtolower( $modality ); |
| 247 | if ( |
| 248 | strpos( $modality_lc, 'image->' ) !== false || |
| 249 | strpos( $modality_lc, 'image+' ) !== false || |
| 250 | strpos( $modality_lc, '+image->' ) !== false |
| 251 | ) { |
| 252 | // Means it can handle images as input, so we consider that "vision" |
| 253 | $tags[] = 'vision'; |
| 254 | } |
| 255 | |
| 256 | return [ |
| 257 | 'model' => $model['id'] ?? '', |
| 258 | 'name' => trim( $model['name'] ?? '' ), |
| 259 | 'family' => $family, |
| 260 | 'features' => $features, |
| 261 | 'price' => [ |
| 262 | 'in' => $priceIn, |
| 263 | 'out' => $priceOut, |
| 264 | ], |
| 265 | 'type' => 'token', |
| 266 | 'unit' => 1 / 1000, |
| 267 | 'maxCompletionTokens' => $maxCompletionTokens, |
| 268 | 'maxContextualTokens' => $maxContextualTokens, |
| 269 | 'tags' => $tags, |
| 270 | ]; |
| 271 | } |
| 272 | |
| 273 | /** |
| 274 | * Return an array of model IDs that support a certain feature (e.g. "tools"). |
| 275 | */ |
| 276 | private function get_supported_models( $feature ) { |
| 277 | // Make a request to get models supporting that feature |
| 278 | $url = 'https://openrouter.ai/api/v1/models?supported_parameters=' . urlencode( $feature ); |
| 279 | $response = wp_remote_get( $url ); |
| 280 | if ( is_wp_error( $response ) ) { |
| 281 | Meow_MWAI_Logging::error( "OpenRouter: Failed to retrieve models for '$feature': " . $response->get_error_message() ); |
| 282 | return []; |
| 283 | } |
| 284 | $body = json_decode( $response['body'], true ); |
| 285 | if ( !isset( $body['data'] ) || !is_array( $body['data'] ) ) { |
| 286 | Meow_MWAI_Logging::error( "OpenRouter: Invalid response for '$feature' models." ); |
| 287 | return []; |
| 288 | } |
| 289 | |
| 290 | $modelIDs = []; |
| 291 | foreach ( $body['data'] as $m ) { |
| 292 | if ( isset( $m['id'] ) ) { |
| 293 | $modelIDs[] = $m['id']; |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | return $modelIDs; |
| 298 | } |
| 299 | |
| 300 | /** |
| 301 | * Utility function to truncate a float to a specific precision. |
| 302 | */ |
| 303 | private function truncate_float( $number, $precision = 4 ) { |
| 304 | $factor = pow( 10, $precision ); |
| 305 | return floor( $number * $factor ) / $factor; |
| 306 | } |
| 307 | |
| 308 | /** |
| 309 | * Check the connection to OpenRouter by listing models. |
| 310 | * Uses the existing retrieve_models method for consistency. |
| 311 | */ |
| 312 | public function connection_check() { |
| 313 | try { |
| 314 | // Use the existing retrieve_models method |
| 315 | $models = $this->retrieve_models(); |
| 316 | |
| 317 | if ( !is_array( $models ) ) { |
| 318 | throw new Exception( 'Invalid response format from OpenRouter' ); |
| 319 | } |
| 320 | |
| 321 | $modelCount = count( $models ); |
| 322 | $availableModels = []; |
| 323 | |
| 324 | // Get first 5 models for display |
| 325 | $displayModels = array_slice( $models, 0, 5 ); |
| 326 | foreach ( $displayModels as $model ) { |
| 327 | if ( isset( $model['model'] ) ) { |
| 328 | $availableModels[] = $model['model']; |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | return [ |
| 333 | 'success' => true, |
| 334 | 'service' => 'OpenRouter', |
| 335 | 'message' => "Connection successful. Found {$modelCount} models.", |
| 336 | 'details' => [ |
| 337 | 'endpoint' => 'https://openrouter.ai/api/v1/models', |
| 338 | 'model_count' => $modelCount, |
| 339 | 'sample_models' => $availableModels |
| 340 | ] |
| 341 | ]; |
| 342 | } |
| 343 | catch ( Exception $e ) { |
| 344 | return [ |
| 345 | 'success' => false, |
| 346 | 'service' => 'OpenRouter', |
| 347 | 'error' => $e->getMessage(), |
| 348 | 'details' => [ |
| 349 | 'endpoint' => 'https://openrouter.ai/api/v1/models' |
| 350 | ] |
| 351 | ]; |
| 352 | } |
| 353 | } |
| 354 | } |
| 355 |