From 41c6388185d94df5cf20473d7e4a253e24d38e4f Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Fri, 24 Nov 2023 14:00:20 -0800 Subject: [PATCH] (test) completion with many params --- litellm/tests/test_completion.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/litellm/tests/test_completion.py b/litellm/tests/test_completion.py index e905fb464a..dde4914092 100644 --- a/litellm/tests/test_completion.py +++ b/litellm/tests/test_completion.py @@ -455,7 +455,8 @@ def test_completion_openai_with_optional_params(): temperature=0.5, top_p=0.1, seed=12, - response_format={ "type": "json_object" } + response_format={ "type": "json_object" }, + logit_bias=None, ) # Add any assertions here to check the response print(response)