fix: remove thinkingConfig entirely — field does not exist in Gemini API

The API returned: Unknown name "thinkingConfig": Cannot find field.
gemini-2.5-flash works with a plain generateContent request, no special config needed.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lizandro
2026-07-15 04:15:06 +00:00
co-authored by Claude Sonnet 4.6
parent 54736a8742
commit 13199b1de4
3 changed files with 2 additions and 15 deletions
@@ -112,10 +112,6 @@ class ShowConfiguracionChat extends Component
'contents' => [['parts' => [['text' => 'Responde solo "ok"']]]],
'generationConfig' => ['maxOutputTokens' => 5, 'temperature' => 0],
];
if (preg_match('/gemini-(2\.5|3[\.\d]*)/', $model)) {
$body['thinkingConfig'] = ['thinkingBudget' => 0];
}
$response = Http::timeout(15)
->withHeaders(['Content-Type' => 'application/json'])
->post("{$url}?key={$key}", $body);
+1 -6
View File
@@ -25,15 +25,10 @@ class GeminiIntentService
private function buildRequest(array $contents, array $genConfig = []): array
{
$body = [
return [
'contents' => $contents,
'generationConfig' => array_merge(['temperature' => 0.1, 'maxOutputTokens' => 100], $genConfig),
];
// thinkingConfig goes at root level (NOT inside generationConfig) for 2.5+ models
if (preg_match('/gemini-(2\.5|3[\.\d]*)/', $this->model)) {
$body['thinkingConfig'] = ['thinkingBudget' => 0];
}
return $body;
}
/**
+1 -5
View File
@@ -24,14 +24,10 @@ class GeminiVisionService
private function buildRequest(array $contents, array $genConfig = []): array
{
$body = [
return [
'contents' => $contents,
'generationConfig' => array_merge(['temperature' => 0.1, 'maxOutputTokens' => 200], $genConfig),
];
if (preg_match('/gemini-(2\.5|3[\.\d]*)/', $this->model)) {
$body['thinkingConfig'] = ['thinkingBudget' => 0];
}
return $body;
}
/**