From 565d51a4b46f8998c26203962e60f939e2b21a97 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Sat, 25 Nov 2023 11:09:43 -0800 Subject: [PATCH] (test) metadata test in litellm.completion --- 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 b0d77d0f41..5951b572c3 100644 --- a/litellm/tests/test_completion.py +++ b/litellm/tests/test_completion.py @@ -410,7 +410,8 @@ def test_completion_openai(): model="gpt-3.5-turbo", messages=messages, max_tokens=10, - request_timeout=0.1 + request_timeout=1, + metadata = {"hi": "bye"} ) print("This is the response object\n", response)