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
perplexity.php
1 year ago
replicate.php
1 year ago
openrouter.php
238 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_OpenAI |
| 12 | { |
| 13 | /** |
| 14 | * Keep a static dictionary (query -> price) so that if we see the same query |
| 15 | * again in another instance, we can immediately return the stored price |
| 16 | * instead of recomputing. |
| 17 | * @var array |
| 18 | */ |
| 19 | private static $accuratePrices = array(); |
| 20 | |
| 21 | public function __construct( $core, $env ) { |
| 22 | parent::__construct( $core, $env ); |
| 23 | } |
| 24 | |
| 25 | protected function set_environment() { |
| 26 | $env = $this->env; |
| 27 | $this->apiKey = $env['apikey']; |
| 28 | } |
| 29 | |
| 30 | protected function build_url( $query, $endpoint = null ) { |
| 31 | $endpoint = apply_filters( 'mwai_openrouter_endpoint', 'https://openrouter.ai/api/v1', $this->env ); |
| 32 | return parent::build_url( $query, $endpoint ); |
| 33 | } |
| 34 | |
| 35 | protected function build_headers( $query ) { |
| 36 | $site_url = apply_filters( 'mwai_openrouter_site_url', get_site_url(), $query ); |
| 37 | $site_name = apply_filters( 'mwai_openrouter_site_name', get_bloginfo( 'name' ), $query ); |
| 38 | return array( |
| 39 | 'Content-Type' => 'application/json', |
| 40 | 'Authorization' => 'Bearer ' . $this->apiKey, |
| 41 | 'HTTP-Referer' => $site_url, |
| 42 | 'X-Title' => $site_name, |
| 43 | 'User-Agent' => 'AI Engine', |
| 44 | ); |
| 45 | } |
| 46 | |
| 47 | protected function build_body( $query, $streamCallback = null, $extra = null ) { |
| 48 | $body = parent::build_body( $query, $streamCallback, $extra ); |
| 49 | // Use transforms from OpenRouter docs |
| 50 | $body['transforms'] = ['middle-out']; |
| 51 | $body['usage'] = [ 'include' => true ]; |
| 52 | return $body; |
| 53 | } |
| 54 | |
| 55 | protected function get_service_name() { |
| 56 | return "OpenRouter"; |
| 57 | } |
| 58 | |
| 59 | public function get_models() { |
| 60 | return $this->core->get_engine_models( 'openrouter' ); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Requests usage data if streaming was used and the usage is incomplete. |
| 65 | */ |
| 66 | public function handle_tokens_usage( |
| 67 | $reply, |
| 68 | $query, |
| 69 | $returned_model, |
| 70 | $returned_in_tokens, |
| 71 | $returned_out_tokens, |
| 72 | $returned_price = null |
| 73 | ) { |
| 74 | // If streaming is not enabled, we might already have all usage data |
| 75 | $everything_is_set = !is_null( $returned_model ) |
| 76 | && !is_null( $returned_in_tokens ) |
| 77 | && !is_null( $returned_out_tokens ); |
| 78 | |
| 79 | // Clean up the data |
| 80 | $returned_in_tokens = $returned_in_tokens ?? $reply->get_in_tokens( $query ); |
| 81 | $returned_out_tokens = $returned_out_tokens ?? $reply->get_out_tokens(); |
| 82 | $returned_price = $returned_price ?? $reply->get_price(); |
| 83 | |
| 84 | // Record the usage in the database |
| 85 | $usage = $this->core->record_tokens_usage( |
| 86 | $returned_model, |
| 87 | $returned_in_tokens, |
| 88 | $returned_out_tokens, |
| 89 | $returned_price |
| 90 | ); |
| 91 | |
| 92 | // Set the usage back on the reply |
| 93 | $reply->set_usage( $usage ); |
| 94 | } |
| 95 | |
| 96 | public function get_price( Meow_MWAI_Query_Base $query, Meow_MWAI_Reply $reply ) { |
| 97 | $price = $reply->get_price(); |
| 98 | return is_null( $price ) ? parent::get_price( $query, $reply ) : $price; |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Retrieve the models from OpenRouter, adding tags/features accordingly. |
| 103 | */ |
| 104 | public function retrieve_models() { |
| 105 | |
| 106 | // 1. Get the list of models supporting "tools" |
| 107 | $toolsModels = $this->get_supported_models( 'tools' ); |
| 108 | |
| 109 | // 2. Retrieve the full list of models |
| 110 | $url = 'https://openrouter.ai/api/v1/models'; |
| 111 | $response = wp_remote_get( $url ); |
| 112 | if ( is_wp_error( $response ) ) { |
| 113 | throw new Exception( 'AI Engine: ' . $response->get_error_message() ); |
| 114 | } |
| 115 | $body = json_decode( $response['body'], true ); |
| 116 | if ( !isset( $body['data'] ) || !is_array( $body['data'] ) ) { |
| 117 | throw new Exception( 'AI Engine: Invalid response for the list of models.' ); |
| 118 | } |
| 119 | |
| 120 | $models = array(); |
| 121 | foreach ( $body['data'] as $model ) { |
| 122 | |
| 123 | // Basic defaults |
| 124 | $family = 'n/a'; |
| 125 | $maxCompletionTokens = 4096; |
| 126 | $maxContextualTokens = 8096; |
| 127 | $priceIn = 0; |
| 128 | $priceOut = 0; |
| 129 | |
| 130 | // Family from model ID (e.g. "openai/gpt-4/32k" -> "openai") |
| 131 | if ( isset( $model['id'] ) ) { |
| 132 | $parts = explode( '/', $model['id'] ); |
| 133 | $family = $parts[0] ?? 'n/a'; |
| 134 | } |
| 135 | |
| 136 | // maxCompletionTokens |
| 137 | if ( isset( $model['top_provider']['max_completion_tokens'] ) ) { |
| 138 | $maxCompletionTokens = (int) $model['top_provider']['max_completion_tokens']; |
| 139 | } |
| 140 | |
| 141 | // maxContextualTokens |
| 142 | if ( isset( $model['context_length'] ) ) { |
| 143 | $maxContextualTokens = (int) $model['context_length']; |
| 144 | } |
| 145 | |
| 146 | // Pricing |
| 147 | if ( isset( $model['pricing']['prompt'] ) && $model['pricing']['prompt'] > 0 ) { |
| 148 | $priceIn = $this->truncate_float( floatval( $model['pricing']['prompt'] ) * 1000 ); |
| 149 | } |
| 150 | if ( isset( $model['pricing']['completion'] ) && $model['pricing']['completion'] > 0 ) { |
| 151 | $priceOut = $this->truncate_float( floatval( $model['pricing']['completion'] ) * 1000 ); |
| 152 | } |
| 153 | |
| 154 | // Basic features and tags |
| 155 | $features = [ 'completion' ]; |
| 156 | $tags = [ 'core', 'chat' ]; |
| 157 | |
| 158 | // If the name contains (beta), (alpha) or (preview), add 'preview' tag and remove from name |
| 159 | if ( preg_match( '/\((beta|alpha|preview)\)/i', $model['name'] ) ) { |
| 160 | $tags[] = 'preview'; |
| 161 | $model['name'] = preg_replace( '/\((beta|alpha|preview)\)/i', '', $model['name'] ); |
| 162 | } |
| 163 | |
| 164 | // If model supports tools |
| 165 | if ( in_array( $model['id'], $toolsModels, true ) ) { |
| 166 | $tags[] = 'functions'; |
| 167 | $features[] = 'functions'; |
| 168 | } |
| 169 | |
| 170 | // Check if the model supports "vision" (if "image" is in the left side of the arrow) |
| 171 | // e.g. "text+image->text" or "image->text" |
| 172 | $modality = $model['architecture']['modality'] ?? ''; |
| 173 | $modality_lc = strtolower( $modality ); |
| 174 | if ( |
| 175 | strpos( $modality_lc, 'image->' ) !== false || |
| 176 | strpos( $modality_lc, 'image+' ) !== false || |
| 177 | strpos( $modality_lc, '+image->' ) !== false |
| 178 | ) { |
| 179 | // Means it can handle images as input, so we consider that "vision" |
| 180 | $tags[] = 'vision'; |
| 181 | } |
| 182 | |
| 183 | $models[] = array( |
| 184 | 'model' => $model['id'] ?? '', |
| 185 | 'name' => trim( $model['name'] ?? '' ), |
| 186 | 'family' => $family, |
| 187 | 'features' => $features, |
| 188 | 'price' => array( |
| 189 | 'in' => $priceIn, |
| 190 | 'out' => $priceOut, |
| 191 | ), |
| 192 | 'type' => 'token', |
| 193 | 'unit' => 1 / 1000, |
| 194 | 'maxCompletionTokens' => $maxCompletionTokens, |
| 195 | 'maxContextualTokens' => $maxContextualTokens, |
| 196 | 'tags' => $tags, |
| 197 | ); |
| 198 | } |
| 199 | |
| 200 | return $models; |
| 201 | } |
| 202 | |
| 203 | /** |
| 204 | * Return an array of model IDs that support a certain feature (e.g. "tools"). |
| 205 | */ |
| 206 | private function get_supported_models( $feature ) { |
| 207 | // Make a request to get models supporting that feature |
| 208 | $url = 'https://openrouter.ai/api/v1/models?supported_parameters=' . urlencode( $feature ); |
| 209 | $response = wp_remote_get( $url ); |
| 210 | if ( is_wp_error( $response ) ) { |
| 211 | Meow_MWAI_Logging::error( "OpenRouter: Failed to retrieve models for '$feature': " . $response->get_error_message() ); |
| 212 | return array(); |
| 213 | } |
| 214 | $body = json_decode( $response['body'], true ); |
| 215 | if ( !isset( $body['data'] ) || !is_array( $body['data'] ) ) { |
| 216 | Meow_MWAI_Logging::error( "OpenRouter: Invalid response for '$feature' models." ); |
| 217 | return array(); |
| 218 | } |
| 219 | |
| 220 | $modelIDs = array(); |
| 221 | foreach ( $body['data'] as $m ) { |
| 222 | if ( isset( $m['id'] ) ) { |
| 223 | $modelIDs[] = $m['id']; |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | return $modelIDs; |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * Utility function to truncate a float to a specific precision. |
| 232 | */ |
| 233 | private function truncate_float( $number, $precision = 4 ) { |
| 234 | $factor = pow( 10, $precision ); |
| 235 | return floor( $number * $factor ) / $factor; |
| 236 | } |
| 237 | } |
| 238 |