test: handle api errors for gemini/palm testing

This commit is contained in:
Krrish Dholakia 2024-02-21 21:44:08 -08:00
parent c9c6547ef9
commit f6e52ac771
2 changed files with 6 additions and 0 deletions

View file

@ -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}")