No Curl REquest for Dall-e-3?

Venkatesh Madurai Subramanian 0 Reputation points
2024-06-27T08:22:31.61+00:00

When i use Dall-E-3 on Azure openAi playground, under "view code", i see some examples

Anyone has an example of a Curl request please? Can't see it in the examples there

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

1 answer

Sort by: Most helpful
  1. Aki Nishikawa 1,820 Reputation points Microsoft Employee
    2024-06-28T01:07:53.9466667+00:00

    Hello @Venkatesh Madurai Subramanian ,

    Could you please check the following URL? This is the REST API reference, and sample request for DALL-E 3 using cURL is provided.

    https://learn.microsoft.com/en-us/azure/ai-services/openai/reference#example-request-3

    curl -X POST https://{your-resource-name}.openai.azure.com/openai/deployments/{deployment-id}/images/generations?api-version=2024-05-01-preview \
       -H "Content-Type: application/json" \
       -H "api-key: YOUR_API_KEY" \
       -d '{
         "prompt": "An avocado chair",
         "size": "1024x1024",
         "n": 1,
         "quality": "hd",
          "style": "vivid"
       }'
    
    0 comments No comments

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.