To change the model you are using in Azure OpenAI Service, you need to create a new deployment with the desired model. In your case, you tried deleting the existing gpt-35-turbo model and deploying the gpt-4-32k model, but encountered an error message in your app that the model doesn't exist. This is because the deployment name is used in your code to call the model by using the client libraries and the REST APIs. Therefore, you need to update the deployment name in your code to match the new deployment name for the gpt-4-32k model.
You do not need to go through the application process again to change the model you are using. Simply follow the steps to create a new deployment with the desired model and update the deployment name in your code to match the new deployment name.
References: