From c5bed0c9fdfc12111893834faafa957ece66b32c Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Thu, 28 Sep 2023 14:14:30 -0700 Subject: [PATCH] update test --- litellm/tests/test_client.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/tests/test_client.py b/litellm/tests/test_client.py index 1da0a4554..9158c56b3 100644 --- a/litellm/tests/test_client.py +++ b/litellm/tests/test_client.py @@ -52,7 +52,7 @@ def test_completion_claude(): def test_completion_non_openai(): try: response = completion( - model="command-nightly", messages=messages, logger_fn=logger_fn + model="claude-instant-1", messages=messages, logger_fn=logger_fn ) # Add any assertions here to check the response except Exception as e: diff --git a/pyproject.toml b/pyproject.toml index bc4041002..ec2ffe129 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.1.795" +version = "0.1.796" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License"