I am getting error while deploying GPT4-turbo via terraform

imgkj 45 Reputation points
2023-12-08T10:00:59.3866667+00:00

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.

Azure OpenAI Service
Azure OpenAI Service
An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
4,080 questions
{count} votes

Accepted answer
  1. Jay 86 Reputation points
    2023-12-11T08:52:55.73+00:00

    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


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.