Update litellm/tests/test_completion.py

This commit is contained in:
sweep-ai[bot] 2023-08-01 16:03:54 +00:00 committed by GitHub
parent 6a5ebea383
commit 351264ce1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ messages = [{ "content": user_message,"role": "user"}]
def test_completion_openai():
try:
response = completion(model="gpt-3.5-turbo", messages=messages)
response = completion(model="updated-model", messages=messages)
# Add any assertions here to check the response
print(response)
except Exception as e:
@ -80,7 +80,7 @@ def test_completion_azure():
def test_completion_claude():
try:
response = completion(model="claude-instant-1", messages=messages)
response = completion(model="updated-model", messages=messages)
# Add any assertions here to check the response
print(response)
except Exception as e: