diff --git a/tests/local_testing/test_acooldowns_router.py b/tests/local_testing/test_acooldowns_router.py index 8427fd2be83..0c385133e32 100644 --- a/tests/local_testing/test_acooldowns_router.py +++ b/tests/local_testing/test_acooldowns_router.py @@ -143,20 +143,16 @@ async def test_cooldown_same_model_name(sync_mode): { "model_name": "gpt-3.5-turbo", "litellm_params": { - "model": "azure/chatgpt-v-3", + "model": "gpt-4.1-nano", "api_key": "bad-key", - "api_version": os.getenv("AZURE_API_VERSION"), - "api_base": os.getenv("AZURE_API_BASE"), "tpm": 90, }, }, { "model_name": "gpt-3.5-turbo", "litellm_params": { - "model": "azure/chatgpt-v-3", - "api_key": os.getenv("AZURE_API_KEY"), - "api_version": os.getenv("AZURE_API_VERSION"), - "api_base": os.getenv("AZURE_API_BASE"), + "model": "gpt-4.1-nano", + "api_key": os.getenv("OPENAI_API_KEY"), "tpm": 1, }, },