PluginProbe
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO / 2.7.0
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO v2.7.0
2.7.0 2.6.0 2.5.0 2.4.0 2.3.0 2.2.0 2.1.1 2.1.0 2.0.2 2.0.1 2.0.0 1.32.0 1.31.0 1.30.0 1.29.0 1.28.0 1.27.0 1.26.0 1.25.0 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.10.0 All 48 releases
← All changes | includes/ai/class-openai-client.php +3 -3 2.2.02.7.0 View file →
@@ -157,11 +157,11 @@
157 157 // temperature, top_p, frequency_penalty, presence_penalty are not supported
158 158 $body['max_completion_tokens'] = $safe_tokens;
159 159
160 160 // GPT-5 models accept reasoning_effort ('minimal'…'high'). Callers
161 - // wanting a quick consumer-style answer (e.g. brand-visibility
162 - // probes) pass 'minimal' so hidden reasoning can't consume the
163 - // whole completion budget and return empty text. Only the GPT-5
161 + // wanting a quick answer pass a low level so hidden reasoning
162 + // can't consume the whole completion budget and return empty
163 + // text. Only the GPT-5
164 164 // family gets it: o1 rejects the parameter outright.
165 165 if (isset($options['reasoning_effort']) && str_starts_with($options['model'], 'gpt-5')) {
166 166 $body['reasoning_effort'] = (string) $options['reasoning_effort'];
167 167 }