Skip to main content

Azure OpenAI Service Connector

Azure OpenAI Service Interact with OpenAI models, including Chat GPT and DALL·E

Connections

OpenAI API Key

InputCommentsDefault
API KeyThis API KEY Generate an API key at https://platform.openai.com/account/api-keys or your Azure OpenAI API KEY.
OrganizationYour Azure OpenAI organization. If using a OpenAI API KEY, this is not required.
Is OpenAI KeySet to true if this api key belongs to an OpenAI account.false

Actions

Create Chat Completion

Create a completion for the chat message

InputCommentsDefault
Connection
Model / Deployment NameSpecifies either the model deployment name (when using Azure OpenAI) or model name (when using non-Azure OpenAI) to use for this request.gpt-3.5-turbo
Messages
[
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Who won the world series in 2020?"
},
{
"role": "assistant",
"content": "The Los Angeles Dodgers won the World Series in 2020."
},
{
"role": "user",
"content": "Where was it played?"
}
]
TemperatureWhat sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.1
top_pAn alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.1
Number of choicesHow many chat completion choices to generate for each input message.1

Create Image

Create image(s) given a prompt

InputCommentsDefault
Connection
PromptA text description of the desired image(s). The maximum length is 1000 characters.
Number of ImagesThe number of images to generate. Must be between 1 and 10.1
Image SizeThe size of the generated images. Must be one of 1792x1024, 1024x1792, or 1024x1024.1024x1024

Create Multiple Chat Completion

Generate Multiple Completions

InputCommentsDefault
Connection
Model / Deployment NameSpecifies either the model deployment name (when using Azure OpenAI) or model name (when using non-Azure OpenAI) to use for this request.text-davinci-003
Messages
[
"How are you today?",
"What is Azure OpenAI?",
"Why do children love dinosaurs?",
"Generate a proof of Euler's identity",
"Describe in single words only the good things that come into your mind about your mother."
]

Raw Request

Send raw HTTP request to Azure OpenAI

InputCommentsDefault
Connection
URLInput the path only (/v1/images/generations), The base URL is already included (https://api.openai.com). For example, to connect to https://api.openai.com/v1/images/generations, only /v1/images/generations is entered in this field./v1/models
MethodThe HTTP method to use.
DataThe HTTP body payload to send to the URL.
Form DataThe Form Data to be sent as a multipart form upload.
File DataFile Data to be sent as a multipart form upload.
File Data File NamesFile names to apply to the file data inputs. Keys must match the file data keys above.
Query ParameterA list of query parameters to send with the request. This is the portion at the end of the URL similar to ?key1=value1&key2=value2.
HeaderA list of headers to send with the request.
Response TypeThe type of data you expect in the response. You can request json, text, or binary data.json
TimeoutThe maximum time that a client will await a response to its request
Debug RequestEnabling this flag will log out the current request.false
Retry Delay (ms)The delay in milliseconds between retries.0
Retry On All ErrorsIf true, retries on all erroneous responses regardless of type.false
Max Retry CountThe maximum number of retries to attempt.0
Use Exponential BackoffSpecifies whether to use a pre-defined exponential backoff strategy for retries.false

Summarize Text

Summarize a given text

InputCommentsDefault
Connection
Model / Deployment NameSpecifies either the model deployment name (when using Azure OpenAI) or model name (when using non-Azure OpenAI) to use for this request.text-davinci-003
Text to Summarize