(testing) test_function_call_non_openai_model

This commit is contained in:
ishaan-jaff 2023-11-02 17:26:30 -07:00
parent e040df8989
commit 7c87d613ed

View file

@ -37,6 +37,7 @@ def test_function_call_non_openai_model():
response = litellm.completion(model=model, messages=messages, functions=functions)
pytest.fail(f'An error occurred')
except Exception as e:
print(e)
pass
test_function_call_non_openai_model()