image.php
1 year ago
message-builder.php
11 months ago
model-environment.php
11 months ago
response-id-manager.php
1 year ago
session.php
11 months ago
usage-stats.php
11 months ago
usage-stats.php
271 lines
| 1 | <?php |
| 2 | |
| 3 | class Meow_MWAI_Services_UsageStats { |
| 4 | private $core; |
| 5 | |
| 6 | public function __construct( $core ) { |
| 7 | $this->core = $core; |
| 8 | } |
| 9 | |
| 10 | public function estimate_tokens( ...$args ) { |
| 11 | // Handle multiple argument formats for backward compatibility |
| 12 | $text = ''; |
| 13 | $model = null; |
| 14 | |
| 15 | // If first argument is an array, process messages |
| 16 | if ( !empty( $args[0] ) && is_array( $args[0] ) ) { |
| 17 | foreach ( $args[0] as $message ) { |
| 18 | $text .= isset( $message['content']['text'] ) ? $message['content']['text'] : ''; |
| 19 | $text .= isset( $message['content'] ) && is_string( $message['content'] ) ? $message['content'] : ''; |
| 20 | } |
| 21 | $model = $args[1] ?? null; |
| 22 | } |
| 23 | // Otherwise treat first argument as text |
| 24 | else { |
| 25 | $text = $args[0] ?? ''; |
| 26 | $model = $args[1] ?? null; |
| 27 | } |
| 28 | |
| 29 | // Convert to string if needed |
| 30 | if ( !is_string( $text ) ) { |
| 31 | // Handle arrays that weren't caught by the first condition |
| 32 | if ( is_array( $text ) ) { |
| 33 | $text = json_encode( $text ); |
| 34 | } |
| 35 | // Handle objects |
| 36 | elseif ( is_object( $text ) ) { |
| 37 | $text = method_exists( $text, '__toString' ) ? (string) $text : json_encode( $text ); |
| 38 | } |
| 39 | // Handle other types (int, float, bool, null) |
| 40 | else { |
| 41 | $text = (string) $text; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | // Many other tools (https://platform.openai.com/tokenizer) say 1 token ~= 4 chars in English. |
| 46 | // However, the tokens are usually calculated with the exact tokenizer for the model, but this is not really possible easily yet. |
| 47 | $text = apply_filters( 'mwai_estimate_tokens_text', $text, $model ); |
| 48 | $tokens = apply_filters( 'mwai_estimate_tokens', null, $text, $model ); |
| 49 | if ( $tokens !== null ) { |
| 50 | return $tokens; |
| 51 | } |
| 52 | $multiplier = 4; |
| 53 | $hasChineseChars = preg_match( '/[\x{4e00}-\x{9fa5}]/u', $text ); |
| 54 | $hasJapaneseChars = preg_match( '/[\x{3040}-\x{309f}\x{30a0}-\x{30ff}]/u', $text ); |
| 55 | $hasKoreanChars = preg_match( '/[\x{ac00}-\x{d7af}]/u', $text ); |
| 56 | if ( $hasChineseChars || $hasJapaneseChars || $hasKoreanChars ) { |
| 57 | $multiplier = 2; |
| 58 | } |
| 59 | $tokens = (int) ( ( function_exists( 'mb_strlen' ) ? mb_strlen( $text ) : strlen( $text ) ) / $multiplier ); |
| 60 | return $tokens; |
| 61 | } |
| 62 | |
| 63 | public function record_tokens_usage( $model, $in_tokens, $out_tokens = 0, $returned_price = null ) { |
| 64 | if ( !is_numeric( $in_tokens ) ) { |
| 65 | $in_tokens = 0; |
| 66 | } |
| 67 | if ( !is_numeric( $out_tokens ) ) { |
| 68 | $out_tokens = 0; |
| 69 | } |
| 70 | |
| 71 | // Record monthly usage |
| 72 | $usage = $this->core->get_option( 'ai_usage' ); |
| 73 | $month = date( 'Y-m' ); |
| 74 | if ( !isset( $usage[$month] ) ) { |
| 75 | $usage[$month] = []; |
| 76 | } |
| 77 | if ( !isset( $usage[$month][$model] ) ) { |
| 78 | $usage[$month][$model] = [ |
| 79 | 'prompt_tokens' => 0, |
| 80 | 'completion_tokens' => 0, |
| 81 | 'total_tokens' => 0, |
| 82 | 'returned_price' => 0, |
| 83 | 'queries' => 0 |
| 84 | ]; |
| 85 | } |
| 86 | // Ensure queries field exists for existing data |
| 87 | if ( !isset( $usage[$month][$model]['queries'] ) ) { |
| 88 | $usage[$month][$model]['queries'] = 0; |
| 89 | } |
| 90 | $usage[$month][$model]['prompt_tokens'] += $in_tokens; |
| 91 | $usage[$month][$model]['completion_tokens'] += $out_tokens; |
| 92 | $usage[$month][$model]['total_tokens'] += $in_tokens + $out_tokens; |
| 93 | $usage[$month][$model]['queries'] += 1; |
| 94 | if ( !empty( $returned_price ) ) { |
| 95 | $usage[$month][$model]['returned_price'] += $returned_price; |
| 96 | } |
| 97 | |
| 98 | // Clean up old monthly data (keep only last 2 years) |
| 99 | $this->cleanup_old_monthly_data( $usage ); |
| 100 | $this->core->update_option( 'ai_usage', $usage ); |
| 101 | |
| 102 | // Record daily usage |
| 103 | $daily_usage = $this->core->get_option( 'ai_usage_daily', [] ); |
| 104 | $day = date( 'Y-m-d' ); |
| 105 | if ( !isset( $daily_usage[$day] ) ) { |
| 106 | $daily_usage[$day] = []; |
| 107 | } |
| 108 | if ( !isset( $daily_usage[$day][$model] ) ) { |
| 109 | $daily_usage[$day][$model] = [ |
| 110 | 'prompt_tokens' => 0, |
| 111 | 'completion_tokens' => 0, |
| 112 | 'total_tokens' => 0, |
| 113 | 'returned_price' => 0, |
| 114 | 'queries' => 0 |
| 115 | ]; |
| 116 | } |
| 117 | // Ensure queries field exists for existing data |
| 118 | if ( !isset( $daily_usage[$day][$model]['queries'] ) ) { |
| 119 | $daily_usage[$day][$model]['queries'] = 0; |
| 120 | } |
| 121 | $daily_usage[$day][$model]['prompt_tokens'] += $in_tokens; |
| 122 | $daily_usage[$day][$model]['completion_tokens'] += $out_tokens; |
| 123 | $daily_usage[$day][$model]['total_tokens'] += $in_tokens + $out_tokens; |
| 124 | $daily_usage[$day][$model]['queries'] += 1; |
| 125 | if ( !empty( $returned_price ) ) { |
| 126 | $daily_usage[$day][$model]['returned_price'] += $returned_price; |
| 127 | } |
| 128 | |
| 129 | // Clean up old daily data (keep only last 30 days) |
| 130 | $this->cleanup_old_daily_data( $daily_usage ); |
| 131 | $this->core->update_option( 'ai_usage_daily', $daily_usage ); |
| 132 | |
| 133 | // Return the usage data for this specific request |
| 134 | return [ |
| 135 | 'prompt_tokens' => $in_tokens, |
| 136 | 'completion_tokens' => $out_tokens, |
| 137 | 'total_tokens' => $in_tokens + $out_tokens, |
| 138 | 'price' => $returned_price, |
| 139 | 'queries' => 1 |
| 140 | ]; |
| 141 | } |
| 142 | |
| 143 | public function record_audio_usage( $model, $seconds ) { |
| 144 | // Record monthly usage |
| 145 | $usage = $this->core->get_option( 'ai_usage' ); |
| 146 | $month = date( 'Y-m' ); |
| 147 | if ( !isset( $usage[$month] ) ) { |
| 148 | $usage[$month] = []; |
| 149 | } |
| 150 | if ( !isset( $usage[$month][$model] ) ) { |
| 151 | $usage[$month][$model] = [ 'seconds' => 0, 'queries' => 0 ]; |
| 152 | } |
| 153 | if ( !isset( $usage[$month][$model]['seconds'] ) ) { |
| 154 | $usage[$month][$model]['seconds'] = 0; |
| 155 | } |
| 156 | if ( !isset( $usage[$month][$model]['queries'] ) ) { |
| 157 | $usage[$month][$model]['queries'] = 0; |
| 158 | } |
| 159 | $usage[$month][$model]['seconds'] += $seconds; |
| 160 | $usage[$month][$model]['queries'] += 1; |
| 161 | $this->cleanup_old_monthly_data( $usage ); |
| 162 | $this->core->update_option( 'ai_usage', $usage ); |
| 163 | |
| 164 | // Record daily usage |
| 165 | $daily_usage = $this->core->get_option( 'ai_usage_daily', [] ); |
| 166 | $day = date( 'Y-m-d' ); |
| 167 | if ( !isset( $daily_usage[$day] ) ) { |
| 168 | $daily_usage[$day] = []; |
| 169 | } |
| 170 | if ( !isset( $daily_usage[$day][$model] ) ) { |
| 171 | $daily_usage[$day][$model] = [ 'seconds' => 0, 'queries' => 0 ]; |
| 172 | } |
| 173 | if ( !isset( $daily_usage[$day][$model]['seconds'] ) ) { |
| 174 | $daily_usage[$day][$model]['seconds'] = 0; |
| 175 | } |
| 176 | if ( !isset( $daily_usage[$day][$model]['queries'] ) ) { |
| 177 | $daily_usage[$day][$model]['queries'] = 0; |
| 178 | } |
| 179 | $daily_usage[$day][$model]['seconds'] += $seconds; |
| 180 | $daily_usage[$day][$model]['queries'] += 1; |
| 181 | $this->cleanup_old_daily_data( $daily_usage ); |
| 182 | $this->core->update_option( 'ai_usage_daily', $daily_usage ); |
| 183 | |
| 184 | // Return the usage data for this specific request |
| 185 | return [ |
| 186 | 'seconds' => $seconds, |
| 187 | 'queries' => 1 |
| 188 | ]; |
| 189 | } |
| 190 | |
| 191 | public function record_images_usage( $model, $resolution, $images ) { |
| 192 | // Record monthly usage |
| 193 | $usage = $this->core->get_option( 'ai_usage' ); |
| 194 | $month = date( 'Y-m' ); |
| 195 | if ( !isset( $usage[$month] ) ) { |
| 196 | $usage[$month] = []; |
| 197 | } |
| 198 | if ( !isset( $usage[$month][$model] ) ) { |
| 199 | $usage[$month][$model] = [ 'resolution' => [], 'images' => 0, 'queries' => 0 ]; |
| 200 | } |
| 201 | if ( !isset( $usage[$month][$model]['images'] ) ) { |
| 202 | $usage[$month][$model]['images'] = 0; |
| 203 | } |
| 204 | if ( !isset( $usage[$month][$model]['resolution'] ) ) { |
| 205 | $usage[$month][$model]['resolution'] = []; |
| 206 | } |
| 207 | if ( !isset( $usage[$month][$model]['resolution'][$resolution] ) ) { |
| 208 | $usage[$month][$model]['resolution'][$resolution] = 0; |
| 209 | } |
| 210 | if ( !isset( $usage[$month][$model]['queries'] ) ) { |
| 211 | $usage[$month][$model]['queries'] = 0; |
| 212 | } |
| 213 | $usage[$month][$model]['images'] += $images; |
| 214 | $usage[$month][$model]['resolution'][$resolution] += $images; |
| 215 | $usage[$month][$model]['queries'] += 1; |
| 216 | $this->cleanup_old_monthly_data( $usage ); |
| 217 | $this->core->update_option( 'ai_usage', $usage ); |
| 218 | |
| 219 | // Record daily usage |
| 220 | $daily_usage = $this->core->get_option( 'ai_usage_daily', [] ); |
| 221 | $day = date( 'Y-m-d' ); |
| 222 | if ( !isset( $daily_usage[$day] ) ) { |
| 223 | $daily_usage[$day] = []; |
| 224 | } |
| 225 | if ( !isset( $daily_usage[$day][$model] ) ) { |
| 226 | $daily_usage[$day][$model] = [ 'resolution' => [], 'images' => 0, 'queries' => 0 ]; |
| 227 | } |
| 228 | if ( !isset( $daily_usage[$day][$model]['images'] ) ) { |
| 229 | $daily_usage[$day][$model]['images'] = 0; |
| 230 | } |
| 231 | if ( !isset( $daily_usage[$day][$model]['resolution'] ) ) { |
| 232 | $daily_usage[$day][$model]['resolution'] = []; |
| 233 | } |
| 234 | if ( !isset( $daily_usage[$day][$model]['resolution'][$resolution] ) ) { |
| 235 | $daily_usage[$day][$model]['resolution'][$resolution] = 0; |
| 236 | } |
| 237 | if ( !isset( $daily_usage[$day][$model]['queries'] ) ) { |
| 238 | $daily_usage[$day][$model]['queries'] = 0; |
| 239 | } |
| 240 | $daily_usage[$day][$model]['images'] += $images; |
| 241 | $daily_usage[$day][$model]['resolution'][$resolution] += $images; |
| 242 | $daily_usage[$day][$model]['queries'] += 1; |
| 243 | $this->cleanup_old_daily_data( $daily_usage ); |
| 244 | $this->core->update_option( 'ai_usage_daily', $daily_usage ); |
| 245 | |
| 246 | // Return the usage data for this specific request |
| 247 | return [ |
| 248 | 'images' => $images, |
| 249 | 'queries' => 1 |
| 250 | ]; |
| 251 | } |
| 252 | |
| 253 | private function cleanup_old_monthly_data( &$usage ) { |
| 254 | $two_years_ago = date( 'Y-m', strtotime( '-2 years' ) ); |
| 255 | foreach ( $usage as $month => $data ) { |
| 256 | if ( $month < $two_years_ago ) { |
| 257 | unset( $usage[$month] ); |
| 258 | } |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | private function cleanup_old_daily_data( &$usage ) { |
| 263 | $thirty_days_ago = date( 'Y-m-d', strtotime( '-30 days' ) ); |
| 264 | foreach ( $usage as $day => $data ) { |
| 265 | if ( $day < $thirty_days_ago ) { |
| 266 | unset( $usage[$day] ); |
| 267 | } |
| 268 | } |
| 269 | } |
| 270 | } |
| 271 |