From 73a242e7fe82de32ae288cfc249c062180a6749e Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Wed, 14 Jan 2026 11:26:09 -0800 Subject: [PATCH] test_bedrock_converse_budget_tokens_preserved --- .../test_anthropic_experimental_pass_through_messages_handler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_litellm/llms/anthropic/experimental_pass_through/messages/test_anthropic_experimental_pass_through_messages_handler.py b/tests/test_litellm/llms/anthropic/experimental_pass_through/messages/test_anthropic_experimental_pass_through_messages_handler.py index e916de34402..66d62aae1ec 100644 --- a/tests/test_litellm/llms/anthropic/experimental_pass_through/messages/test_anthropic_experimental_pass_through_messages_handler.py +++ b/tests/test_litellm/llms/anthropic/experimental_pass_through/messages/test_anthropic_experimental_pass_through_messages_handler.py @@ -142,6 +142,7 @@ async def test_bedrock_converse_budget_tokens_preserved(): call_kwargs = mock_post.call_args.kwargs json_data = call_kwargs.get("json") or json.loads(call_kwargs.get("data", "{}")) + print("Request json: ", json.dumps(json_data, indent=4, default=str)) additional_fields = json_data.get("additionalModelRequestFields", {}) thinking_config = additional_fields.get("thinking", {})