Azure OpenAI region canadaeast not available for L...
# support
a
When trying to set up API configuration for LLM (GPT-4o) on Azure OpenAI I cannot select the region canadaeast, there's only canada as option. The setup does not work when selecting canada. Please fix that as we have our quota servers there and we require low latency for our solution.
v
@Armando I understand the importance of having your API configuration set up correctly to ensure low latency for your solution. While I can't directly fix the issue with the Azure OpenAI region selection, I would recommend reaching out to Azure support for assistance with this matter. They will be able to provide you with the most accurate information and help resolve any issues with region selection and setup. In the meantime, if there are any other questions or if you need further assistance with VAPI or any other concerns, please let me know, and I'll do my best to assist you.
You can continue this conversation by mentioning me in the message.
a
@Vapi the problem is that on vapi's website there is a region canada listed which simply doesn't exist
v
@Armando I apologize for the confusion. It seems there might be a discrepancy on the VAPI website regarding the region options for Canada. I would suggest reaching out to VAPI's support team to report this issue so they can correct it on their website. They should also be able to provide guidance on how to proceed with setting up your API configuration for the correct region that aligns with your servers. If you need assistance with anything else or have further questions, please feel free to ask.
a
@Shubham Bajaj can you update the regions for Canada?
s
@Armando You can do it using API for now, soon will push it to the dashboard.
a
I think I can't use the API to add provider credentials @Shubham Bajaj
s
@Armando try the following curl-request and let me know how it goes. Here ocpApimSubscriptionKey is optionl, feel free to remove it if required.
Copy code
curl --location 'https://api.vapi.ai/credential' \
--header 'accept: */*' \
--header 'accept-language: en-GB,en-US;q=0.9,en;q=0.8' \
--header 'authorization: Bearer insert-your-token-here' \
--header 'content-type: application/json' \
--header 'origin: https://dashboard.vapi.ai' \
--header 'priority: u=1, i' \
--header 'referer: https://dashboard.vapi.ai/' \
--header 'x-dashboard-version: 5334a312820225a5d26aa779a05c4441a0178223' \
--header 'Cookie: _cfuvid=CUSErOTQze7IfYksWMA7yAByAUDG7qgz41gjoqw2vwU-1737501475592-0.0.1.1-604800000' \
--data '{
    "provider": "azure-openai",
    "models": [
        "insert-your-model-name-here"
    ],
    "region": "insert-your-region-here",
    "openAIEndpoint": "insert-your-openaiEndpoint-here",
    "openAIKey": "insert-your-openAIKey-here",
    "ocpApimSubscriptionKey": "insert-your-ocpApimSubscriptionKey-here-ff-required"
}'