diff --git a/tests/local_testing/test_amazing_vertex_completion.py b/tests/local_testing/test_amazing_vertex_completion.py index 081e67a5c..5a07d17b7 100644 --- a/tests/local_testing/test_amazing_vertex_completion.py +++ b/tests/local_testing/test_amazing_vertex_completion.py @@ -975,6 +975,7 @@ async def test_partner_models_httpx(model, sync_mode): data = { "model": model, "messages": messages, + "timeout": 10, } if sync_mode: response = litellm.completion(**data) @@ -988,6 +989,8 @@ async def test_partner_models_httpx(model, sync_mode): assert isinstance(response._hidden_params["response_cost"], float) except litellm.RateLimitError as e: pass + except litellm.Timeout as e: + pass except litellm.InternalServerError as e: pass except Exception as e: