anthropic.php
2 years ago
core.php
1 year ago
factory.php
2 years ago
google.php
2 years ago
huggingface.php
2 years ago
openai.php
1 year ago
openrouter.php
2 years ago
openrouter.php
179 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Engines_OpenRouter extends Meow_MWAI_Engines_OpenAI |
| 4 | { |
| 5 | |
| 6 | public function __construct( $core, $env ) |
| 7 | { |
| 8 | parent::__construct( $core, $env ); |
| 9 | } |
| 10 | |
| 11 | protected function set_environment() { |
| 12 | $env = $this->env; |
| 13 | $this->apiKey = $env['apikey']; |
| 14 | } |
| 15 | |
| 16 | protected function build_url( $query, $endpoint = null ) { |
| 17 | $endpoint = apply_filters( 'mwai_openrouter_endpoint', 'https://openrouter.ai/api/v1', $this->env ); |
| 18 | $url = parent::build_url( $query, $endpoint ); |
| 19 | return $url; |
| 20 | } |
| 21 | |
| 22 | protected function build_headers( $query ) { |
| 23 | parent::build_headers( $query ); |
| 24 | $site_url = apply_filters( 'mwai_openrouter_site_url', get_site_url(), $query ); |
| 25 | $site_name = apply_filters( 'mwai_openrouter_site_name', get_bloginfo( 'name' ), $query ); |
| 26 | $headers = array( |
| 27 | 'Content-Type' => 'application/json', |
| 28 | 'Authorization' => 'Bearer ' . $this->apiKey, |
| 29 | 'HTTP-Referer' => $site_url, |
| 30 | 'X-Title' => $site_name, |
| 31 | 'User-Agent' => 'AI Engine', |
| 32 | ); |
| 33 | return $headers; |
| 34 | } |
| 35 | |
| 36 | private function truncate_float( $number, $precision = 4 ) { |
| 37 | $factor = pow( 10, $precision ); |
| 38 | return floor( $number * $factor ) / $factor; |
| 39 | } |
| 40 | |
| 41 | protected function get_service_name() { |
| 42 | return "OpenRouter"; |
| 43 | } |
| 44 | |
| 45 | public function get_models() { |
| 46 | return $this->core->get_engine_models( 'openrouter' ); |
| 47 | } |
| 48 | |
| 49 | public function handle_tokens_usage( $reply, $query, $returned_model, |
| 50 | $returned_in_tokens, $returned_out_tokens, $returned_price = null ) { |
| 51 | |
| 52 | // If streaming is not enabled, we probably have all the data we need |
| 53 | $everything_is_set = !is_null( $returned_model ) && !is_null( $returned_in_tokens ) && !is_null( $returned_out_tokens ); |
| 54 | |
| 55 | // Clean up the data |
| 56 | $returned_in_tokens = !is_null( $returned_in_tokens ) ? |
| 57 | $returned_in_tokens : $reply->get_in_tokens( $query ); |
| 58 | $returned_out_tokens = !is_null( $returned_out_tokens ) ? |
| 59 | $returned_out_tokens : $reply->get_out_tokens(); |
| 60 | $returned_price = !is_null( $returned_price ) ? |
| 61 | $returned_price : $reply->get_price(); |
| 62 | |
| 63 | // If everything is not set, we can make a request to get the usage data |
| 64 | if ( !empty( $reply->id ) && !$everything_is_set ) { |
| 65 | $url = 'https://openrouter.ai/api/v1/generation?id=' . $reply->id; |
| 66 | try { |
| 67 | $ch = curl_init(); |
| 68 | curl_setopt( $ch, CURLOPT_URL, $url ); |
| 69 | curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); |
| 70 | curl_setopt( $ch, CURLOPT_HTTPHEADER, [ 'Authorization: Bearer ' . $this->apiKey ] ); |
| 71 | curl_setopt( $ch, CURLOPT_USERAGENT, 'AI Engine' ); |
| 72 | $res = curl_exec( $ch ); |
| 73 | curl_close( $ch ); |
| 74 | $res = json_decode( $res, true ); |
| 75 | if ( isset( $res['data'] ) ) { |
| 76 | $data = $res['data']; |
| 77 | $returned_model = $data['model']; |
| 78 | $returned_in_tokens = $data['tokens_prompt']; |
| 79 | $returned_out_tokens = $data['tokens_completion']; |
| 80 | $returned_price = $data['total_cost']; |
| 81 | } |
| 82 | } |
| 83 | catch ( Exception $e ) { |
| 84 | $this->core->log( '❌ (OpenRouter) ' . $e->getMessage() ); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | // Record the usage |
| 89 | $usage = $this->core->record_tokens_usage( |
| 90 | $returned_model, |
| 91 | $returned_in_tokens, |
| 92 | $returned_out_tokens, |
| 93 | $returned_price |
| 94 | ); |
| 95 | |
| 96 | // Set the usage in the reply |
| 97 | $reply->set_usage( $usage ); |
| 98 | } |
| 99 | |
| 100 | public function get_price( Meow_MWAI_Query_Base $query, Meow_MWAI_Reply $reply ) { |
| 101 | $price = $reply->get_price(); |
| 102 | if ( is_null( $price ) ) { |
| 103 | $price = parent::get_price( $query, $reply ); |
| 104 | } |
| 105 | return $price; |
| 106 | } |
| 107 | |
| 108 | public function retrieve_models() { |
| 109 | $url = 'https://openrouter.ai/api/v1/models'; |
| 110 | $response = wp_remote_get( $url ); |
| 111 | if ( is_wp_error( $response ) ) { |
| 112 | throw new Exception( 'AI Engine: ' . $response->get_error_message() ); |
| 113 | } |
| 114 | $body = json_decode( $response['body'], true ); |
| 115 | $models = array(); |
| 116 | foreach ( $body['data'] as $model ) { |
| 117 | $family = "n/a"; |
| 118 | $maxCompletionTokens = 4096; |
| 119 | $maxContextualTokens = 8096; |
| 120 | $priceIn = 0; |
| 121 | $priceOut = 0; |
| 122 | $family = explode( '/', $model['id'] )[0]; |
| 123 | if ( isset( $model['top_provider']['max_completion_tokens'] ) ) { |
| 124 | $maxCompletionTokens = (int)$model['top_provider']['max_completion_tokens']; |
| 125 | } |
| 126 | if ( isset( $model['context_length'] ) ) { |
| 127 | $maxContextualTokens = (int)$model['context_length']; |
| 128 | } |
| 129 | if ( isset( $model['pricing']['prompt'] ) && $model['pricing']['prompt'] > 0 ) { |
| 130 | $priceIn = floatval( $model['pricing']['prompt'] ) * 1000; |
| 131 | $priceIn = $this->truncate_float( $priceIn ); |
| 132 | } |
| 133 | if ( isset( $model['pricing']['completion'] ) && $model['pricing']['completion'] > 0 ) { |
| 134 | $priceOut = floatval( $model['pricing']['completion'] ) * 1000; |
| 135 | $priceOut = $this->truncate_float( $priceOut ); |
| 136 | } |
| 137 | |
| 138 | $tags = [ 'core', 'chat' ]; |
| 139 | // If the name contains (beta), (alpha) or (preview), add 'preview' tag and remove from name |
| 140 | if ( preg_match( '/\((beta|alpha|preview)\)/i', $model['name'], $matches ) ) { |
| 141 | $tags[] = 'preview'; |
| 142 | $model['name'] = preg_replace( '/\((beta|alpha|preview)\)/i', '', $model['name'] ); |
| 143 | } |
| 144 | |
| 145 | // Vision Support |
| 146 | // Unfortunately, OpenRouter does not provide a way know if a model is vision or not |
| 147 | |
| 148 | // If the name includes 'Vision', add 'vision' tag |
| 149 | if ( preg_match( '/vision/i', $model['name'], $matches ) ) { |
| 150 | $tags[] = 'vision'; |
| 151 | } |
| 152 | // If the name includes 'gpt-4o', add 'vision' tag |
| 153 | else if ( preg_match( '/gpt-4o/i', $model['name'], $matches ) ) { |
| 154 | $tags[] = 'vision'; |
| 155 | } |
| 156 | // If the name includes 'flash', add 'vision' tag |
| 157 | else if ( preg_match( '/flash/i', $model['name'], $matches ) ) { |
| 158 | $tags[] = 'vision'; |
| 159 | } |
| 160 | |
| 161 | $models[] = array( |
| 162 | 'model' => $model['id'], |
| 163 | 'name' => trim( $model['name'] ), |
| 164 | 'family' => $family, |
| 165 | 'mode' => 'chat', |
| 166 | 'price' => array( |
| 167 | 'in' => $priceIn, |
| 168 | 'out' => $priceOut, |
| 169 | ), |
| 170 | 'type' => 'token', |
| 171 | 'unit' => 1 / 1000, |
| 172 | 'maxCompletionTokens' => $maxCompletionTokens, |
| 173 | 'maxContextualTokens' => $maxContextualTokens, |
| 174 | 'tags' => $tags |
| 175 | ); |
| 176 | } |
| 177 | return $models; |
| 178 | } |
| 179 | } |