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"