anthropic.php
20 hours ago
chatml.php
1 week ago
core.php
2 days ago
custom.php
1 month ago
factory.php
1 week ago
google-interactions.php
2 days ago
google.php
1 week ago
mistral.php
1 week ago
open-router.php
3 weeks ago
openai.php
3 weeks ago
ovh.php
1 week ago
perplexity.php
6 months ago
replicate.php
5 months ago
xai.php
1 month ago
ovh.php
326 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Engines_OVH extends Meow_MWAI_Engines_ChatML { |
| 4 | private $endpoint = 'https://oai.endpoints.kepler.ai.cloud.ovh.net'; |
| 5 | public $envType = 'ovh'; |
| 6 | |
| 7 | public function __construct( $core, $env ) { |
| 8 | parent::__construct( $core, $env ); |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * Sets up the environment for our custom engine. |
| 13 | */ |
| 14 | protected function set_environment() { |
| 15 | $env = $this->env; |
| 16 | |
| 17 | if ( !isset( $env['apikey'] ) || empty( $env['apikey'] ) ) { |
| 18 | throw new Exception( 'AI Engine: OVH API key is not set. Please configure the OVH AI Endpoints access token in your settings.' ); |
| 19 | } |
| 20 | |
| 21 | $this->apiKey = $env['apikey']; |
| 22 | |
| 23 | if ( isset( $env['endpoint'] ) && !empty( $env['endpoint'] ) ) { |
| 24 | $this->endpoint = $env['endpoint']; |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | protected function build_url( $query, $endpoint = null ) { |
| 29 | $endpoint = apply_filters( 'mwai_ovh_endpoint', trailingslashit( $this->endpoint ) . 'v1', $this->env ); |
| 30 | return $endpoint . '/chat/completions'; |
| 31 | } |
| 32 | |
| 33 | protected function get_service_name() { |
| 34 | return 'OVH'; |
| 35 | } |
| 36 | |
| 37 | protected function build_messages( $query ) { |
| 38 | // Handle vision models like llava-next-mistral-7b |
| 39 | if ( strpos( $query->model, 'llava' ) !== false ) { |
| 40 | $query->image_remote_upload = 'data'; |
| 41 | } |
| 42 | |
| 43 | $messages = parent::build_messages( $query ); |
| 44 | return $messages; |
| 45 | } |
| 46 | |
| 47 | protected function stream_data_handler( $json ) { |
| 48 | // Handle usage-only chunks (final chunk with empty choices array). |
| 49 | // OVH sends usage data in a final chunk with choices: [] |
| 50 | if ( isset( $json['usage'] ) && empty( $json['choices'] ) ) { |
| 51 | $usage = $json['usage']; |
| 52 | if ( isset( $usage['prompt_tokens'], $usage['completion_tokens'] ) ) { |
| 53 | $this->streamInTokens = (int) $usage['prompt_tokens']; |
| 54 | $this->streamOutTokens = (int) $usage['completion_tokens']; |
| 55 | } |
| 56 | return null; // No content in this chunk |
| 57 | } |
| 58 | |
| 59 | // Let parent handle all other chunks |
| 60 | return parent::stream_data_handler( $json ); |
| 61 | } |
| 62 | |
| 63 | public function get_models() { |
| 64 | return $this->retrieve_models(); |
| 65 | } |
| 66 | |
| 67 | protected function build_headers( $query ) { |
| 68 | $headers = [ |
| 69 | 'Content-Type' => 'application/json', |
| 70 | 'Authorization' => 'Bearer ' . $this->apiKey, |
| 71 | ]; |
| 72 | return $headers; |
| 73 | } |
| 74 | |
| 75 | protected function build_body( $query, $streamCallback = null, $extra = null ) { |
| 76 | $body = parent::build_body( $query, $streamCallback, $extra ); |
| 77 | |
| 78 | // Handle max_tokens parameter (OVH uses max_tokens, not max_completion_tokens) |
| 79 | if ( isset( $body['max_completion_tokens'] ) ) { |
| 80 | $body['max_tokens'] = $body['max_completion_tokens']; |
| 81 | unset( $body['max_completion_tokens'] ); |
| 82 | } |
| 83 | |
| 84 | // OVH supports stream_options for accurate token usage in streaming |
| 85 | if ( !empty( $streamCallback ) && !isset( $body['stream_options'] ) ) { |
| 86 | $body['stream_options'] = [ |
| 87 | 'include_usage' => true, |
| 88 | ]; |
| 89 | } |
| 90 | |
| 91 | // Remove parallel_tool_calls - OVH might not support it |
| 92 | if ( isset( $body['parallel_tool_calls'] ) ) { |
| 93 | unset( $body['parallel_tool_calls'] ); |
| 94 | } |
| 95 | |
| 96 | // Remove other potentially unsupported parameters |
| 97 | $unsupported_params = [ 'response_format', 'seed', 'logit_bias', 'logprobs', 'top_logprobs' ]; |
| 98 | foreach ( $unsupported_params as $param ) { |
| 99 | if ( isset( $body[$param] ) ) { |
| 100 | unset( $body[$param] ); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | return $body; |
| 105 | } |
| 106 | |
| 107 | public function handle_tokens_usage( |
| 108 | $reply, |
| 109 | $query, |
| 110 | $returned_model, |
| 111 | $returned_in_tokens, |
| 112 | $returned_out_tokens, |
| 113 | $returned_price = null |
| 114 | ) { |
| 115 | |
| 116 | // Clean up the data |
| 117 | $returned_in_tokens = !is_null( $returned_in_tokens ) ? |
| 118 | $returned_in_tokens : $reply->get_in_tokens( $query ); |
| 119 | $returned_out_tokens = !is_null( $returned_out_tokens ) ? |
| 120 | $returned_out_tokens : $reply->get_out_tokens(); |
| 121 | |
| 122 | // Calculate price based on our model definitions |
| 123 | $models = $this->get_ovh_models(); |
| 124 | $model_price = null; |
| 125 | |
| 126 | foreach ( $models as $model ) { |
| 127 | if ( $model['model'] === $returned_model ) { |
| 128 | $model_price = $model['price']; |
| 129 | break; |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | if ( $model_price ) { |
| 134 | $returned_price = ( $returned_in_tokens * $model_price['in'] + |
| 135 | $returned_out_tokens * $model_price['out'] ) / 1000000; |
| 136 | } |
| 137 | else { |
| 138 | $returned_price = 0; |
| 139 | } |
| 140 | |
| 141 | // Record the usage |
| 142 | $usage = $this->core->record_tokens_usage( |
| 143 | $returned_model, |
| 144 | $returned_in_tokens, |
| 145 | $returned_out_tokens, |
| 146 | $returned_price |
| 147 | ); |
| 148 | |
| 149 | // Set the usage in the reply |
| 150 | $reply->set_usage( $usage ); |
| 151 | |
| 152 | // Set accuracy based on data availability |
| 153 | if ( !is_null( $returned_in_tokens ) && !is_null( $returned_out_tokens ) ) { |
| 154 | // Tokens from API (via stream_options), price calculated locally |
| 155 | $reply->set_usage_accuracy( 'tokens' ); |
| 156 | } |
| 157 | else { |
| 158 | // Everything estimated |
| 159 | $reply->set_usage_accuracy( 'estimated' ); |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | public function get_price( Meow_MWAI_Query_Base $query, Meow_MWAI_Reply $reply ) { |
| 164 | $models = $this->get_ovh_models(); |
| 165 | |
| 166 | foreach ( $models as $model ) { |
| 167 | if ( $model['model'] === $query->model ) { |
| 168 | $in_tokens = $reply->get_in_tokens( $query ); |
| 169 | $out_tokens = $reply->get_out_tokens(); |
| 170 | return ( $in_tokens * $model['price']['in'] + |
| 171 | $out_tokens * $model['price']['out'] ) / 1000000; |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | return 0; |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Retrieve the models from the OVH OpenRouter-compatible catalog. |
| 180 | */ |
| 181 | public function retrieve_models() { |
| 182 | $url = 'https://catalog.endpoints.ai.ovh.net/rest/v2/openrouter'; |
| 183 | $response = wp_remote_get( $url, [ 'timeout' => 10 ] ); |
| 184 | |
| 185 | if ( is_wp_error( $response ) ) { |
| 186 | return $this->get_fallback_models(); |
| 187 | } |
| 188 | |
| 189 | $body = wp_remote_retrieve_body( $response ); |
| 190 | $data = json_decode( $body, true ); |
| 191 | |
| 192 | if ( empty( $data ) || !is_array( $data ) ) { |
| 193 | return $this->get_fallback_models(); |
| 194 | } |
| 195 | |
| 196 | // Extract models from 'data' key |
| 197 | $models_data = isset( $data['data'] ) ? $data['data'] : $data; |
| 198 | |
| 199 | if ( empty( $models_data ) || !is_array( $models_data ) ) { |
| 200 | return $this->get_fallback_models(); |
| 201 | } |
| 202 | |
| 203 | $models = []; |
| 204 | foreach ( $models_data as $model_data ) { |
| 205 | $model = $this->map_openrouter_model( $model_data ); |
| 206 | if ( $model ) { |
| 207 | $models[] = $model; |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | return !empty( $models ) ? $models : $this->get_fallback_models(); |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * Map OpenRouter model data to AI Engine format. |
| 216 | */ |
| 217 | private function map_openrouter_model( $model_data ) { |
| 218 | if ( empty( $model_data['id'] ) ) { |
| 219 | return null; |
| 220 | } |
| 221 | |
| 222 | $model_id = $model_data['id']; |
| 223 | $name = !empty( $model_data['name'] ) ? $model_data['name'] : $model_id; |
| 224 | |
| 225 | // Extract family from model ID |
| 226 | $family_parts = explode( '/', $model_id ); |
| 227 | $family = $family_parts[0]; |
| 228 | |
| 229 | // Base features and tags |
| 230 | $features = [ 'completion', 'chat' ]; |
| 231 | $tags = [ 'core', 'chat' ]; |
| 232 | |
| 233 | // Check for vision support (input modality includes images) |
| 234 | if ( !empty( $model_data['input_modalities'] ) && is_array( $model_data['input_modalities'] ) ) { |
| 235 | if ( in_array( 'image', $model_data['input_modalities'] ) ) { |
| 236 | $features[] = 'vision'; |
| 237 | $tags[] = 'vision'; |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | // Map features from OpenRouter to AI Engine format |
| 242 | $openrouter_features = !empty( $model_data['supported_features'] ) ? $model_data['supported_features'] : []; |
| 243 | foreach ( $openrouter_features as $feature ) { |
| 244 | switch ( $feature ) { |
| 245 | case 'json_mode': |
| 246 | case 'structured_outputs': |
| 247 | if ( !in_array( 'json', $tags ) ) { |
| 248 | $tags[] = 'json'; |
| 249 | } |
| 250 | break; |
| 251 | case 'reasoning': |
| 252 | if ( !in_array( 'reasoning', $tags ) ) { |
| 253 | $tags[] = 'reasoning'; |
| 254 | } |
| 255 | break; |
| 256 | case 'tools': |
| 257 | // OVH now supports function calling via tools format |
| 258 | if ( !in_array( 'functions', $tags ) ) { |
| 259 | $tags[] = 'functions'; |
| 260 | } |
| 261 | break; |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | // Convert pricing from per-token to per-million tokens |
| 266 | $price_in = 0; |
| 267 | $price_out = 0; |
| 268 | if ( !empty( $model_data['pricing']['prompt'] ) ) { |
| 269 | $price_in = floatval( $model_data['pricing']['prompt'] ) * 1000000; |
| 270 | } |
| 271 | if ( !empty( $model_data['pricing']['completion'] ) ) { |
| 272 | $price_out = floatval( $model_data['pricing']['completion'] ) * 1000000; |
| 273 | } |
| 274 | |
| 275 | // Get context and max tokens |
| 276 | $max_context = !empty( $model_data['context_length'] ) ? intval( $model_data['context_length'] ) : 128000; |
| 277 | $max_completion = !empty( $model_data['max_output_length'] ) ? intval( $model_data['max_output_length'] ) : 4096; |
| 278 | |
| 279 | return [ |
| 280 | 'model' => $model_id, |
| 281 | 'name' => $name, |
| 282 | 'family' => $family, |
| 283 | 'features' => $features, |
| 284 | 'price' => [ |
| 285 | 'in' => $price_in, |
| 286 | 'out' => $price_out, |
| 287 | ], |
| 288 | 'type' => 'token', |
| 289 | 'unit' => 1 / 1000000, |
| 290 | 'maxCompletionTokens' => $max_completion, |
| 291 | 'maxContextualTokens' => $max_context, |
| 292 | 'tags' => $tags, |
| 293 | ]; |
| 294 | } |
| 295 | |
| 296 | /** |
| 297 | * Get fallback models in case the catalog API is unavailable. |
| 298 | */ |
| 299 | private function get_fallback_models() { |
| 300 | return [ |
| 301 | [ |
| 302 | 'model' => 'meta-llama/Llama-3.3-70B-Instruct', |
| 303 | 'name' => 'Llama 3.3 70B Instruct', |
| 304 | 'family' => 'meta-llama', |
| 305 | 'features' => [ 'completion', 'chat' ], |
| 306 | 'price' => [ |
| 307 | 'in' => 0.06, |
| 308 | 'out' => 0.09, |
| 309 | ], |
| 310 | 'type' => 'token', |
| 311 | 'unit' => 1 / 1000000, |
| 312 | 'maxCompletionTokens' => 8192, |
| 313 | 'maxContextualTokens' => 131072, |
| 314 | 'tags' => [ 'core', 'chat', 'json', 'reasoning' ], |
| 315 | ], |
| 316 | ]; |
| 317 | } |
| 318 | |
| 319 | /** |
| 320 | * Get model info by model ID (for backward compatibility). |
| 321 | */ |
| 322 | private function get_ovh_models() { |
| 323 | return $this->retrieve_models(); |
| 324 | } |
| 325 | } |
| 326 |