diff --git a/litellm/main.py b/litellm/main.py index 518da5afaf..d993e83d79 100644 --- a/litellm/main.py +++ b/litellm/main.py @@ -82,8 +82,7 @@ def mock_completion(model: str, messages: List, stream: bool = False, mock_respo response = mock_completion_streaming_obj(model_response, mock_response=mock_response, model=model) return response - completion_response = "This is a mock request" - model_response["choices"][0]["message"]["content"] = completion_response + model_response["choices"][0]["message"]["content"] = mock_response model_response["created"] = time.time() model_response["model"] = model return model_response diff --git a/pyproject.toml b/pyproject.toml index 6c8acc6f8a..fb0e5ae29d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.674" +version = "0.1.675" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License"