From da7ecb3ea9dac582d376bf4eb97bce68c3176bd1 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 8 Nov 2025 11:10:54 -0800 Subject: [PATCH] test_gemini_reasoning_effort_zero_budget_disables_thoughts --- tests/llm_translation/test_gemini.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/llm_translation/test_gemini.py b/tests/llm_translation/test_gemini.py index 9594d25a45..b6ff80b473 100644 --- a/tests/llm_translation/test_gemini.py +++ b/tests/llm_translation/test_gemini.py @@ -988,7 +988,7 @@ def test_gemini_reasoning_effort_zero_budget_disables_thoughts(monkeypatch): from litellm.types.utils import CallTypes monkeypatch.setattr( - "litellm.litellm.llms.vertex_ai.gemini.vertex_and_google_ai_studio_gemini.DEFAULT_REASONING_EFFORT_MINIMAL_THINKING_BUDGET_GEMINI_2_5_FLASH", + "litellm.llms.vertex_ai.gemini.vertex_and_google_ai_studio_gemini.DEFAULT_REASONING_EFFORT_MINIMAL_THINKING_BUDGET_GEMINI_2_5_FLASH", 0, )