From 3a7f32949942ee5969a88bda1c2e292aa4951787 Mon Sep 17 00:00:00 2001 From: Matteo Rosati Date: Thu, 29 Jan 2026 15:05:00 +0100 Subject: [PATCH] MEDIUM thinking level is not supported by this model --- llm_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llm_config.py b/llm_config.py index e52843d..25b8a01 100644 --- a/llm_config.py +++ b/llm_config.py @@ -34,6 +34,6 @@ generate_content_config = types.GenerateContentConfig( ], tools=tools, thinking_config=types.ThinkingConfig( - thinking_level="MEDIUM", + thinking_level="HIGH", ), )