mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 19:54:13 +00:00
fix - someone resolved a merge conflict badly
This commit is contained in:
parent
a0b2c107c4
commit
ee6477e1ac
1 changed files with 2 additions and 1 deletions
|
@ -938,7 +938,6 @@ def test_completion_function_plus_image(model):
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
try:
|
|
||||||
response = completion(
|
response = completion(
|
||||||
model=model,
|
model=model,
|
||||||
messages=[image_message],
|
messages=[image_message],
|
||||||
|
@ -950,6 +949,8 @@ def test_completion_function_plus_image(model):
|
||||||
print(response)
|
print(response)
|
||||||
except litellm.InternalServerError:
|
except litellm.InternalServerError:
|
||||||
pass
|
pass
|
||||||
|
except Exception as e:
|
||||||
|
pytest.fail(f"error occurred: {str(e)}")
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue