From 4c375d13d6fe19e8672dcc7f06ef44dbb38a2ad0 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 7 Aug 2024 16:26:56 -0700 Subject: [PATCH] fix test_drop_params_parallel_tool_calls --- litellm/tests/test_optional_params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/tests/test_optional_params.py b/litellm/tests/test_optional_params.py index b2b0a0a2a..2cd5c1149 100644 --- a/litellm/tests/test_optional_params.py +++ b/litellm/tests/test_optional_params.py @@ -345,7 +345,7 @@ def test_drop_params_parallel_tool_calls(model, provider, should_drop): response = litellm.utils.get_optional_params( model=model, custom_llm_provider=provider, - response_format="json", + response_format={"type": "json"}, parallel_tool_calls=True, drop_params=True, )