This commit is contained in:
Krrish Dholakia 2023-08-05 22:43:25 -07:00
parent c8884e21e7
commit aaca89e0fe
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ messages = [{ "content": user_message,"role": "user"}]
def test_completion_azure(): def test_completion_azure():
try: try:
response = completion(model="chatgpt-test", messages=messages, azure=True) response = completion(model="gpt-3.5-turbo", deployment_id="chatgpt-test", messages=messages, azure=True)
# Add any assertions here to check the response # Add any assertions here to check the response
print(response) print(response)
except Exception as e: except Exception as e:

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "litellm" name = "litellm"
version = "0.1.350" version = "0.1.351"
description = "Library to easily interface with LLM API providers" description = "Library to easily interface with LLM API providers"
authors = ["BerriAI"] authors = ["BerriAI"]
license = "MIT License" license = "MIT License"