forked from phoenix/litellm-mirror
test: handle api errors for gemini/palm testing
This commit is contained in:
parent
c9c6547ef9
commit
f6e52ac771
2 changed files with 6 additions and 0 deletions
|
@ -1986,6 +1986,8 @@ def test_completion_gemini():
|
|||
response = completion(model=model_name, messages=messages)
|
||||
# Add any assertions here to check the response
|
||||
print(response)
|
||||
except litellm.APIError as e:
|
||||
pass
|
||||
except Exception as e:
|
||||
pytest.fail(f"Error occurred: {e}")
|
||||
|
||||
|
@ -2015,6 +2017,8 @@ def test_completion_palm():
|
|||
response = completion(model=model_name, messages=messages)
|
||||
# Add any assertions here to check the response
|
||||
print(response)
|
||||
except litellm.APIError as e:
|
||||
pass
|
||||
except Exception as e:
|
||||
pytest.fail(f"Error occurred: {e}")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue