diff --git a/litellm/tests/test_completion.py b/litellm/tests/test_completion.py index 59d414efff..3b451a2f3a 100644 --- a/litellm/tests/test_completion.py +++ b/litellm/tests/test_completion.py @@ -184,19 +184,19 @@ def test_completion_openai_with_optional_params(): except Exception as e: pytest.fail(f"Error occurred: {e}") - -def test_completion_openrouter(): - try: - response = completion( - model="google/palm-2-chat-bison", - messages=messages, - temperature=0.5, - top_p=0.1, - ) - # Add any assertions here to check the response - print(response) - except Exception as e: - pytest.fail(f"Error occurred: {e}") +# commented out for now, as openrouter is quite flaky - causing our deployments to fail. Please run this before pushing changes. +# def test_completion_openrouter(): +# try: +# response = completion( +# model="google/palm-2-chat-bison", +# messages=messages, +# temperature=0.5, +# top_p=0.1, +# ) +# # Add any assertions here to check the response +# print(response) +# except Exception as e: +# pytest.fail(f"Error occurred: {e}") def test_completion_openai_with_more_optional_params(): try: