The issue here is the case-sensitive the correct version is 1106-Preview
Capital P and not the small one p
Posted the same Solution to another thread on terraform
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have other azure open ai models deployed via terraform. They are working fine. But when I am trying to deploy GPT4-turbo (GPT4-1106-preview), I am getting the following error -
performing CreateOrUpdate: unexpected status 400 with error: DeploymentModelNotSupported: The model 'Format: OpenAI, Name: gpt-4, Version: 1106-preview' of account deployment is not supported.
I am using the following parameters -
"gpt-4-1106-preview" = {
name = "gpt-4-1106-preview-deployment"
model_name = "gpt-4"
model_version = "1106-preview"
scale_capacity = 80
}
I referenced these inputs from here
Please help with this error as I am not sure what I am missing.
The issue here is the case-sensitive the correct version is 1106-Preview
Capital P and not the small one p
Posted the same Solution to another thread on terraform