From 02a41a5c13bfbe89d8d0672e27c0e768e57b7727 Mon Sep 17 00:00:00 2001 From: Sameer Kankute Date: Mon, 5 Jan 2026 11:40:40 +0530 Subject: [PATCH] fix the comment --- .../litellm_responses_transformation/transformation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/completion_extras/litellm_responses_transformation/transformation.py b/litellm/completion_extras/litellm_responses_transformation/transformation.py index 3fb69f97fd..5b206317b2 100644 --- a/litellm/completion_extras/litellm_responses_transformation/transformation.py +++ b/litellm/completion_extras/litellm_responses_transformation/transformation.py @@ -691,7 +691,7 @@ class LiteLLMResponsesTransformationHandler(CompletionTransformationBridge): if isinstance(reasoning_effort, dict): return Reasoning(**reasoning_effort) # type: ignore[typeddict-item] - # If string is passed, map with summary="concise" + # If string is passed, map with summary="detailed" if reasoning_effort == "none": return Reasoning(effort="none", summary="detailed") # type: ignore elif reasoning_effort == "high":