From a2efd32f5c7e2b40d7e758dcf418946f4ddcd9a6 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Fri, 11 Aug 2023 17:12:44 -0700 Subject: [PATCH] fixing test for circle ci --- litellm/tests/test_batch_completions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/tests/test_batch_completions.py b/litellm/tests/test_batch_completions.py index ca041ec95..d15628f56 100644 --- a/litellm/tests/test_batch_completions.py +++ b/litellm/tests/test_batch_completions.py @@ -7,7 +7,7 @@ sys.path.insert(0, os.path.abspath('../..')) # Adds the parent directory to the import litellm from litellm import batch_completion -messages = [[{"role": "user", "content": "Hey, how's it going"}] for _ in range(100)] +messages = [[{"role": "user", "content": "Hey, how's it going"}] for _ in range(5)] print(messages[0:5]) print(len(messages)) model = "gpt-3.5-turbo"