GPT4o-latest deprecation, would it affect other gp...
# support
q
I saw the message that latest version should be deprecated from December 16th, but I using gpt-4o-2024-08-06. Could I use it later? Maybe through openrouter?
v
You can continue using
gpt-4o-2024-08-06
by specifying it in your Azure OpenAI configuration, as long as your deployment name matches exactly. Here’s a sample configuration for Vapi:
Copy code
json
{
  "provider": "azure-openai",
  "models": ["gpt-4o-2024-08-06"],
  "region": "eastus",
  "openAIEndpoint": "https://your-resource.openai.azure.com",
  "openAIKey": "your-azure-openai-api-key"
}
Make sure your Azure deployment name is exactly
gpt-4o-2024-08-06
for compatibility
([documentation](https://docs.vapi.ai/providers/model/azure-openai)). Source: - [Azure OpenAI documentation](https://docs.vapi.ai/providers/model/azure-openai)
v
Message marked as helpful by @Qwerty! 🎉