From dc879910e718f14f5f26c1e4ff232902ea5159d5 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Thu, 12 Oct 2023 16:35:33 -0700 Subject: [PATCH] (test) load_dotenv in streaming tests --- litellm/tests/test_streaming.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/tests/test_streaming.py b/litellm/tests/test_streaming.py index b431168ce24..13a164b23ff 100644 --- a/litellm/tests/test_streaming.py +++ b/litellm/tests/test_streaming.py @@ -8,6 +8,8 @@ import time, pytest sys.path.insert( 0, os.path.abspath("../..") ) # Adds the parent directory to the system path +from dotenv import load_dotenv +load_dotenv() import litellm from litellm import completion, acompletion, AuthenticationError, InvalidRequestError, RateLimitError