Log in

Azure OpenAI

Azure OpenAI is Microsoft’s service for accessing OpenAI models through its Azure cloud platform.

💡 For detailed pricing information, please refer to the official documentation.

Application and Setup Process

  1. Open Azure , sign up or log in, create a subscription, and choose a billing plan.
  2. After signing in, search for OpenAI , create an OpenAI service, and select the appropriate region and resource group.
  3. Go to Azure AI Studio, create a model deployment(e.g., gpt-5-mini), and set a deployment name(e.g., gpt-deployment-01).
  4. In the SelectTranslate extension’s Azure OpenAI model settings, enter the API key from the Keys and Endpoint page of your Azure OpenAI resource, and set the custom API endpoint:
    https://{your-custom-name}.openai.azure.com/openai/deployments/{your-deployment-name}/chat/completions?api-version=2024-08-01-preview
    
  • Replace {your-custom-name} with your custom subdomain. For example, if your custom domain is https://your-custom-name.openai.azure.com/openai/v1, enter your-custom-name here.
  • Replace {your-deployment-name} with the deployment name you specified when creating the deployment.
  1. In the model settings, change the model name to gpt-5-mini
  2. If you have any questions, go to Azure AI Studio,open PlayGround, and click View Code to check the Endpoint, Deployment Name, and API Key used in the sample code and verify that your configuration is correct.
  3. If you encounter any issues or have suggestions, you can submit them on the Feedback page.