> ## Documentation Index
> Fetch the complete documentation index at: https://docs.varios-ai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DALL·E

> The DALL·E connector enables the creation of AI-generated images based on text descriptions. With this connector, you can create high-quality, customized images for various use cases.

## Options

<ParamField body="model" type="string" required>
  The name of the image AI model.
</ParamField>

<ParamField body="openAIApiKey" type="string">
  The OpenAI API key.
</ParamField>

<ParamField body="openAIOrgKey" type="string">
  The organization key for the OpenAI API.
</ParamField>

<ParamField body="openAIProjectKey" type="string">
  The project key for the OpenAI API.
</ParamField>

<ParamField body="endpointUrl" type="string">
  The endpoint URL for the OpenAI API.
</ParamField>

<ParamField body="azureAPIKey" type="string">
  The API key for the Azure API.
</ParamField>

<ParamField body="azureAPIVersion" type="string">
  The API version for the Azure API.
</ParamField>

## Arguments

<ParamField body="prompt" type="string" required>
  The instruction for the LLM to populate the argument for the prompt.

  Example:

  ```
  The prompt for image generation
  ```
</ParamField>

<ParamField body="useHD" type="string">
  The instruction for the LLM to determine whether high quality is desired.

  Example:

  ```
  Set "hd" if the user requests high quality. Default is "standard"
  ```
</ParamField>

<ParamField body="size" type="string" required>
  The instruction for the LLM to determine the image size.

  Example:

  ```
  Use 1024x1024 (square) as the default, 1792x1024 if the user requests a wide image, and 1024x1792 for full-body portraits
  ```
</ParamField>

<ParamField body="style" type="string">
  The instruction for the LLM to determine the image style.

  Example:

  ```
  Must be one of vivid or natural. Vivid causes the model to lean towards generating hyper-real and dramatic images. Natural causes the model to produce more natural, less hyper-real looking images
  ```
</ParamField>
