diff --git a/litellm/testing.py b/litellm/testing.py index ebec952f2a..2442bab7cb 100644 --- a/litellm/testing.py +++ b/litellm/testing.py @@ -43,7 +43,7 @@ def testing_batch_completion(*args, **kwargs): except Exception as e: end_time = time.time() elapsed_time = end_time - start_time - result_dict = {"status": "succeeded", "response": e, "response_time": elapsed_time} + result_dict = {"status": "failed", "response": e, "response_time": elapsed_time} results.append(result_dict) return results except: diff --git a/pyproject.toml b/pyproject.toml index 3578354929..a2a5934402 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.404" +version = "0.1.405" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License"