> ## 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

> Der DALL·E-Konnektor ermöglicht die Erstellung von KI-generierten Bildern basierend auf Textbeschreibungen. Mit diesem Konnektor können Sie hochwertige, maßgeschneiderte Bilder für verschiedene Anwendungsfälle erstellen.

## Optionen

<ParamField body="model" type="string" required>
  Der Name des Bild-KI-Modells.
</ParamField>

<ParamField body="openAIApiKey" type="string">
  Der OpenAI API Key.
</ParamField>

<ParamField body="openAIOrgKey" type="string">
  Der Organization Key für die OpenAI API.
</ParamField>

<ParamField body="openAIProjectKey" type="string">
  Der Project Key für die OpenAI API.
</ParamField>

<ParamField body="endpointUrl" type="string">
  Die Endpoint-URL für die OpenAI API.
</ParamField>

<ParamField body="azureAPIKey" type="string">
  Der API Key für die Azure API.
</ParamField>

<ParamField body="azureAPIVersion" type="string">
  Die API Version für die Azure API.
</ParamField>

## Argumente

<ParamField body="prompt" type="string" required>
  Die Anweisung für das LLM um das Argument für den Prompt zu füllen.

  Beispiel:

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

<ParamField body="useHD" type="string">
  Die Anweisung für das LLM um zu bestimmen, ob eine hohe Qualität gewünscht ist.

  Beispiel:

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

<ParamField body="size" type="string" required>
  Die Anweisung für das LLM um die Bildgröße zu bestimmen.

  Beispiel:

  ```
  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">
  Die Anweisung für das LLM um den Bildstil zu bestimmen.

  Beispiel:

  ```
  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>
