From 9c70da56df13010770148db2b84c02595518f68f Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Mon, 30 Oct 2023 19:59:36 -0700 Subject: [PATCH] test(test_async_fn.py): test logging --- litellm/tests/test_async_fn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/tests/test_async_fn.py b/litellm/tests/test_async_fn.py index 72cb44006f..3bb90153ef 100644 --- a/litellm/tests/test_async_fn.py +++ b/litellm/tests/test_async_fn.py @@ -17,7 +17,7 @@ def test_sync_response(): user_message = "Hello, how are you?" messages = [{"content": user_message, "role": "user"}] try: - response = completion(model="gpt-3.5-turbo", messages=messages) + response = completion(model="gpt-3.5-turbo", messages=messages, api_key=os.environ["OPENAI_API_KEY"]) except Exception as e: pytest.fail(f"An exception occurred: {e}")